Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

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

Rev 26 Rev 39
Línea 24... Línea 24...
24
    private String description;
24
    private String description;
Línea 25... Línea 25...
25
 
25
 
26
    @ColumnInfo(name = "viewed")
26
    @ColumnInfo(name = "viewed")
Línea -... Línea 27...
-
 
27
    private String viewed;
-
 
28
 
Línea 27... Línea 29...
27
    private String viewed;
29
    @ColumnInfo(name = "url")
28
 
30
    private String url;
29
 
31
 
Línea 57... Línea 59...
57
 
59
 
58
    public void setDescription(String description) {
60
    public void setDescription(String description) {
59
        this.description = description;
61
        this.description = description;
Línea -... Línea 62...
-
 
62
    }
-
 
63
 
-
 
64
    public String getUrl() {
-
 
65
        return url;
-
 
66
    }
-
 
67
 
-
 
68
    public void setUrl(String url) {
-
 
69
        this.url = url;
60
    }
70
    }
61
 
71
 
62
    public String getViewed() {
72
    public String getViewed() {
Línea 63... Línea 73...
63
        return viewed;
73
        return viewed;
64
    }
74
    }
65
 
75
 
Línea 66... Línea -...
66
    public void setViewed(String viewed) {
-
 
67
        this.viewed = viewed;
76
    public void setViewed(String viewed) {
68
    }
77
        this.viewed = viewed;
69
 
78
    }
70
 
79
 
71
    public NotificationCenter(long id, String title, String date, String description, String viewed) {
80
    public NotificationCenter(long id, String title, String date, String description, String viewed, String url) {
72
        this.id= id;
81
        this.id= id;
-
 
82
        this.title = title;
Línea 73... Línea 83...
73
        this.title = title;
83
        this.date = date;
Línea 74... Línea 84...
74
        this.date = date;
84
        this.description = description;
75
        this.description = description;
85
        this.viewed = viewed;
Línea 76... Línea 86...
76
        this.viewed = viewed;
86
        this.url = url;
77
 
87
 
78
    }
88
    }
79
 
89
 
-
 
90
    @Ignore
80
    @Ignore
91
    public NotificationCenter() {
81
    public NotificationCenter() {
92