Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

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

Rev 19 Rev 26
Línea 21... Línea 21...
21
    private String date;
21
    private String date;
Línea 22... Línea 22...
22
 
22
 
23
    @ColumnInfo(name = "description")
23
    @ColumnInfo(name = "description")
Línea -... Línea 24...
-
 
24
    private String description;
-
 
25
 
-
 
26
    @ColumnInfo(name = "viewed")
Línea 24... Línea 27...
24
    private String description;
27
    private String viewed;
25
 
28
 
26
 
29
 
Línea 54... Línea 57...
54
 
57
 
55
    public void setDescription(String description) {
58
    public void setDescription(String description) {
56
        this.description = description;
59
        this.description = description;
Línea -... Línea 60...
-
 
60
    }
-
 
61
 
-
 
62
    public String getViewed() {
-
 
63
        return viewed;
-
 
64
    }
-
 
65
 
-
 
66
    public void setViewed(String viewed) {
-
 
67
        this.viewed = viewed;
Línea 57... Línea 68...
57
    }
68
    }
58
 
69
 
59
 
70
 
60
    public NotificationCenter(long id, String title, String date, String description) {
71
    public NotificationCenter(long id, String title, String date, String description, String viewed) {
61
        this.id= id;
72
        this.id= id;
-
 
73
        this.title = title;
Línea 62... Línea 74...
62
        this.title = title;
74
        this.date = date;
Línea 63... Línea 75...
63
        this.date = date;
75
        this.description = description;
64
        this.description = description;
76
        this.viewed = viewed;
Línea 65... Línea 77...
65
 
77
 
66
    }
78
    }
67
 
79
 
68
    @Ignore
-
 
-
 
80
    @Ignore
69
    public NotificationCenter() {
81
    public NotificationCenter() {
70
 
82