Proyectos de Subversion Android Microlearning - Inconcert

Rev

Rev 14 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 14 Rev 18
Línea 35... Línea 35...
35
 
35
 
36
    @ColumnInfo(name="updated_on")
36
    @ColumnInfo(name="updated_on")
Línea 37... Línea 37...
37
    private String updatedOn;
37
    private String updatedOn;
38
 
38
 
Línea 39... Línea 39...
39
    @ColumnInfo(name="link_comments")
39
    @ColumnInfo(name="link_comments")
40
    private String link_comments;
40
    private String linkComments;
Línea 41... Línea 41...
41
 
41
 
42
    @ColumnInfo(name="link_comment_add")
42
    @ColumnInfo(name="link_comment_add")
Línea 43... Línea 43...
43
    private String link_comment_add;
43
    private String linkCommentAdd;
44
 
44
 
Línea 45... Línea 45...
45
    @ColumnInfo(name="total_comments")
45
    @ColumnInfo(name="total_comments")
46
    private int total_comments;
46
    private int totalComments;
Línea 47... Línea 47...
47
 
47
 
Línea 154... Línea 154...
154
 
154
 
155
    public void setUpdatedOn(String updatedOn) {
155
    public void setUpdatedOn(String updatedOn) {
156
        this.updatedOn = updatedOn;
156
        this.updatedOn = updatedOn;
Línea 157... Línea 157...
157
    }
157
    }
158
 
158
 
159
    public String getLink_comments() {
159
    public String getLinkComments() {
Línea 160... Línea 160...
160
        return link_comments;
160
        return linkComments;
161
    }
161
    }
162
 
162
 
Línea 163... Línea 163...
163
    public void setLink_comments(String link_comments) {
163
    public void setLinkComments(String link_comments) {
164
        this.link_comments = link_comments;
164
        this.linkComments = link_comments;
165
    }
165
    }
Línea 166... Línea 166...
166
 
166
 
167
    public String getLink_comment_add() {
167
    public String getLinkCommentAdd() {
168
        return link_comment_add;
168
        return linkCommentAdd;
Línea 169... Línea 169...
169
    }
169
    }
170
 
170
 
171
    public void setLink_comment_add(String link_comment_add) {
171
    public void setLinkCommentAdd(String link_comment_add) {
Línea 172... Línea 172...
172
        this.link_comment_add = link_comment_add;
172
        this.linkCommentAdd = link_comment_add;
173
    }
173
    }
174
 
174
 
Línea 175... Línea 175...
175
    public int getTotal_comments() {
175
    public int getTotalComments() {
176
        return total_comments;
176
        return totalComments;
177
    }
177
    }
Línea 178... Línea 178...
178
 
178
 
179
    public void setTotal_comments(int total_comments) {
179
    public void setTotalComments(int total_comments) {
180
        this.total_comments = total_comments;
180
        this.totalComments = total_comments;
Línea 181... Línea 181...
181
    }
181
    }
182
 
182
 
183
    public int getTotal_rating() {
183
    public int getTotalRating() {
184
        return total_rating;
184
        return totalRating;
185
    }
185
    }
186
 
186
 
187
    public void setTotal_rating(int total_rating) {
187
    public void setTotalRating(int total_rating) {
188
        this.total_rating = total_rating;
188
        this.totalRating = total_rating;
189
    }
189
    }
190
 
190
 
191
 
191
 
192
    public Capsule(String uuid, String topicUuid, String name, String description, String image, int position, String addedOn, String updatedOn, String link_comments, String link_comment_add, int total_comments, int total_rating) {
192
    public Capsule(String uuid, String topicUuid, String name, String description, String image, int position, String addedOn, String updatedOn, String linkComments, String linkCommentAdd, int totalComments, int totalRating) {
193
        this.uuid = uuid;
193
        this.uuid = uuid;
Línea 194... Línea 194...
194
        this.topicUuid = topicUuid;
194
        this.topicUuid = topicUuid;
Línea 195... Línea 195...
195
        this.name = name;
195
        this.name = name;
196
        this.description = description;
196
        this.description = description;
Línea 213... Línea 213...
213
        this.description = "";
213
        this.description = "";
214
        this.image = "";
214
        this.image = "";
215
        this.position = 0;
215
        this.position = 0;
216
        this.addedOn = "";
216
        this.addedOn = "";
217
        this.updatedOn= "";
217
        this.updatedOn= "";
218
        this.link_comments ="";
218
        this.linkComments ="";
219
        this.link_comment_add="";
219
        this.linkCommentAdd="";
220
        this.total_comments=0;
220
        this.totalComments=0;
221
        this.total_rating=0;
221
        this.totalRating=0;
222
    }
222
    }
223
}
223
}