Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

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

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