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

SingleNoteWidgetData.java « singlenote « widget « 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: 79b8300611aa36d61c31a0b9e2acbdf4a02e05da (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
package it.niedermann.owncloud.notes.widget.singlenote;

import it.niedermann.owncloud.notes.widget.AbstractWidgetData;

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;
    }

}