Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

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

Rev 21 Rev 23
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="started_on")
-
 
40
    private String startedOn;
-
 
41
 
-
 
42
    @ColumnInfo(name="finalized_on")
37
    private String updatedOn;
43
    private String finalizedOn;
38
 
44
 
Línea 39... Línea 45...
39
    @Ignore
45
    @Ignore
40
    private int totalSlides;
46
    private int totalSlides;
Línea 142... Línea 148...
142
 
148
 
143
    public void setUpdatedOn(String updatedOn) {
149
    public void setUpdatedOn(String updatedOn) {
144
        this.updatedOn = updatedOn;
150
        this.updatedOn = updatedOn;
Línea -... Línea 151...
-
 
151
    }
-
 
152
 
-
 
153
    public String getStartedOn() {
-
 
154
        return startedOn;
-
 
155
    }
-
 
156
 
-
 
157
    public void setStartedOn(String startedOn) {
-
 
158
        this.startedOn = startedOn;
-
 
159
    }
-
 
160
 
-
 
161
    public String getFinalizedOn() {return finalizedOn; }
-
 
162
 
-
 
163
    public void setFinalizedOn(String finalizedOn) {
-
 
164
        this.finalizedOn = finalizedOn;
-
 
165
    }
-
 
166
 
145
    }
167
 
146
 
168
 
147
    public Capsule(String uuid, String topicUuid, String name, String description, String image, int position, String addedOn, String updatedOn) {
169
    public Capsule(String uuid, String topicUuid, String name, String description, String image, int position, String addedOn, String updatedOn, String startedOn, String finalizedOn) {
148
        this.uuid = uuid;
170
        this.uuid = uuid;
149
        this.topicUuid = topicUuid;
171
        this.topicUuid = topicUuid;
150
        this.name = name;
172
        this.name = name;
151
        this.description = description;
173
        this.description = description;
152
        this.image = image;
174
        this.image = image;
153
        this.position = position;
175
        this.position = position;
-
 
176
        this.addedOn = addedOn;
-
 
177
        this.updatedOn = updatedOn;
154
        this.addedOn = addedOn;
178
        this.startedOn = startedOn;
Línea 155... Línea 179...
155
        this.updatedOn = updatedOn;
179
        this.finalizedOn = finalizedOn;
156
    }
180
    }
157
 
181
 
Línea 163... Línea 187...
163
        this.description = "";
187
        this.description = "";
164
        this.image = "";
188
        this.image = "";
165
        this.position = 0;
189
        this.position = 0;
166
        this.addedOn = "";
190
        this.addedOn = "";
167
        this.updatedOn= "";
191
        this.updatedOn= "";
-
 
192
        this.startedOn= "";
-
 
193
        this.finalizedOn= "";
168
    }
194
    }
169
}
195
}