Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SingleNoteWidgetData.java « model « notes « owncloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8cb4bacee049407f850f3c6bf709c63a94a2e2d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package it.niedermann.owncloud.notes.model;

public class SingleNoteWidgetData {
    private int appWidgetId;
    private long accountId;
    private long noteId;
    private int themeMode;

    public SingleNoteWidgetData() {

    }

    public SingleNoteWidgetData(int appWidgetId, long accountId, long noteId, int themeMode) {
        this.appWidgetId = appWidgetId;
        this.accountId = accountId;
        this.noteId = noteId;
        this.themeMode = themeMode;
    }

    public int getAppWidgetId() {
        return appWidgetId;
    }

    public void setAppWidgetId(int appWidgetId) {
        this.appWidgetId = appWidgetId;
    }

    public long getAccountId() {
        return accountId;
    }

    public void setAccountId(long accountId) {
        this.accountId = accountId;
    }

    public long getNoteId() {
        return noteId;
    }

    public void setNoteId(long noteId) {
        this.noteId = noteId;
    }

    public int getThemeMode() {
        return themeMode;
    }

    public void setThemeMode(int themeMode) {
        this.themeMode = themeMode;
    }
}