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

UpdatePodcastStatusEvent.java « podcast « events « owncloudnewsreader « luhmer « de « java « main « src « News-Android-App - github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0bc2ea21668fd0eba02a0cf16d851a2bf66a25dc (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
52
53
54
55
package de.luhmer.owncloudnewsreader.events.podcast;

public class UpdatePodcastStatusEvent {

    private long current;
    private long max;
    private String title;
    private boolean playing;
    private boolean preparingFile;
    private boolean fileLoaded;
    private boolean isVideoFile;
    private long rssItemId;

    public long getRssItemId() {
        return rssItemId;
    }

    public String getTitle() {
        return title;
    }

    public boolean isPlaying() {
        return playing;
    }

    public long getCurrent() {
        return current;
    }

    public long getMax() {
        return max;
    }

    public boolean isPreparingFile() {
        return preparingFile;
    }

    public boolean isFileLoaded() {
        return fileLoaded;
    }

    public boolean isVideoFile() { return isVideoFile; }

    public UpdatePodcastStatusEvent(long current, long max, boolean playing, String title, boolean preparingFile, boolean fileLoaded, boolean isVideoFile, long rssItemId) {
        this.current = current;
        this.max = max;
        this.playing = playing;
        this.title = title;
        this.preparingFile = preparingFile;
        this.fileLoaded = fileLoaded;
        this.isVideoFile = isVideoFile;
        this.rssItemId = rssItemId;
    }

}