Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

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

Rev 1 Rev 21
Línea 28... Línea 28...
28
    private String image;
28
    private String image;
Línea 29... Línea 29...
29
 
29
 
30
    @ColumnInfo(name = "position")
30
    @ColumnInfo(name = "position")
Línea -... Línea 31...
-
 
31
    private int position;
-
 
32
 
-
 
33
    @ColumnInfo(name="added_on")
-
 
34
    private String addedOn;
-
 
35
 
-
 
36
    @ColumnInfo(name="updated_on")
31
    private int position;
37
    private String updatedOn;
32
 
38
 
Línea 33... Línea 39...
33
    @Ignore
39
    @Ignore
34
    private int totalSlides;
40
    private int totalSlides;
Línea 120... Línea 126...
120
 
126
 
121
    public void setCompleted(int completed) {
127
    public void setCompleted(int completed) {
122
        this.completed = completed;
128
        this.completed = completed;
Línea -... Línea 129...
-
 
129
    }
-
 
130
 
-
 
131
    public String getAddedOn() {
-
 
132
        return addedOn;
-
 
133
    }
-
 
134
 
-
 
135
    public void setAddedOn(String addedOn) {
-
 
136
        this.addedOn = addedOn;
-
 
137
    }
-
 
138
 
-
 
139
    public String getUpdatedOn() {
-
 
140
        return updatedOn;
-
 
141
    }
-
 
142
 
-
 
143
    public void setUpdatedOn(String updatedOn) {
-
 
144
        this.updatedOn = updatedOn;
123
    }
145
    }
124
 
146
 
125
    public Capsule(String uuid, String topicUuid, String name, String description, String image, int position) {
147
    public Capsule(String uuid, String topicUuid, String name, String description, String image, int position, String addedOn, String updatedOn) {
126
        this.uuid = uuid;
148
        this.uuid = uuid;
127
        this.topicUuid = topicUuid;
149
        this.topicUuid = topicUuid;
128
        this.name = name;
150
        this.name = name;
129
        this.description = description;
151
        this.description = description;
130
        this.image = image;
-
 
-
 
152
        this.image = image;
-
 
153
        this.position = position;
131
        this.position = position;
154
        this.addedOn = addedOn;
Línea 132... Línea 155...
132
 
155
        this.updatedOn = updatedOn;
133
    }
156
    }
134
 
157
 
135
    @Ignore
158
    @Ignore
136
    public Capsule() {
159
    public Capsule() {
137
        this.uuid = "";
160
        this.uuid = "";
138
        this.topicUuid = "";
161
        this.topicUuid = "";
139
        this.name = "";
162
        this.name = "";
140
        this.description = "";
-
 
-
 
163
        this.description = "";
-
 
164
        this.image = "";
141
        this.image = "";
165
        this.position = 0;
142
        this.position = 0;
166
        this.addedOn = "";