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: 556c104118f7dfc3dafa8c43476716fe1ce27d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package it.niedermann.owncloud.notes.model;

public class SingleNoteWidgetData extends AbstractWidgetData {
    private long noteId;

    public SingleNoteWidgetData() {

    }

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

    public long getNoteId() {
        return noteId;
    }

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

}