Proyectos de Subversion Android Microlearning - Inconcert

Rev

Rev 1 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 14
Línea 34... Línea 34...
34
    private String addedOn;
34
    private String addedOn;
Línea 35... Línea 35...
35
 
35
 
36
    @ColumnInfo(name="updated_on")
36
    @ColumnInfo(name="updated_on")
Línea -... Línea 37...
-
 
37
    private String updatedOn;
-
 
38
 
-
 
39
    @ColumnInfo(name="link_comments")
-
 
40
    private String link_comments;
-
 
41
 
-
 
42
    @ColumnInfo(name="link_comment_add")
-
 
43
    private String link_comment_add;
-
 
44
 
-
 
45
    @ColumnInfo(name="total_comments")
-
 
46
    private int total_comments;
-
 
47
 
-
 
48
    @ColumnInfo(name="total_rating")
37
    private String updatedOn;
49
    private int total_rating;
38
 
50
 
Línea 39... Línea 51...
39
    @Ignore
51
    @Ignore
40
    private int totalSlides;
52
    private int totalSlides;
Línea 142... Línea 154...
142
 
154
 
143
    public void setUpdatedOn(String updatedOn) {
155
    public void setUpdatedOn(String updatedOn) {
144
        this.updatedOn = updatedOn;
156
        this.updatedOn = updatedOn;
Línea -... Línea 157...
-
 
157
    }
-
 
158
 
-
 
159
    public String getLink_comments() {
-
 
160
        return link_comments;
-
 
161
    }
-
 
162
 
-
 
163
    public void setLink_comments(String link_comments) {
-
 
164
        this.link_comments = link_comments;
-
 
165
    }
-
 
166
 
-
 
167
    public String getLink_comment_add() {
-
 
168
        return link_comment_add;
-
 
169
    }
-
 
170
 
-
 
171
    public void setLink_comment_add(String link_comment_add) {
Línea -... Línea 172...
-
 
172
        this.link_comment_add = link_comment_add;
-
 
173
    }
-
 
174
 
-
 
175
    public int getTotal_comments() {
-
 
176
        return total_comments;
-
 
177
    }
-
 
178
 
-
 
179
    public void setTotal_comments(int total_comments) {
-
 
180
        this.total_comments = total_comments;
-
 
181
    }
-
 
182
 
-
 
183
    public int getTotal_rating() {
-
 
184
        return total_rating;
-
 
185
    }
-
 
186
 
Línea 145... Línea 187...
145
    }
187
    public void setTotal_rating(int total_rating) {
146
 
188
        this.total_rating = total_rating;
147
 
189
    }
148
 
190
 
149
 
191
 
150
    public Capsule(String uuid, String topicUuid, String name, String description, String image, int position, String addedOn, String updatedOn) {
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) {
151
        this.uuid = uuid;
193
        this.uuid = uuid;
152
        this.topicUuid = topicUuid;
194
        this.topicUuid = topicUuid;
153
        this.name = name;
195
        this.name = name;
-
 
196
        this.description = description;
-
 
197
        this.image = image;
-
 
198
        this.position = position;
-
 
199
        this.addedOn = addedOn;
Línea 154... Línea 200...
154
        this.description = description;
200
        this.updatedOn = updatedOn;
Línea 155... Línea 201...
155
        this.image = image;
201
        this.link_comments = link_comments;
156
        this.position = position;
202
        this.link_comment_add = link_comment_add;
Línea 167... Línea 213...
167
        this.description = "";
213
        this.description = "";
168
        this.image = "";
214
        this.image = "";
169
        this.position = 0;
215
        this.position = 0;
170
        this.addedOn = "";
216
        this.addedOn = "";
171
        this.updatedOn= "";
217
        this.updatedOn= "";
-
 
218
        this.link_comments ="";
-
 
219
        this.link_comment_add="";
-
 
220
        this.total_comments=0;
-
 
221
        this.total_rating=0;
172
    }
222
    }
173
}
223
}