Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

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

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