1
wxr
2023-04-23 2cd55265ccff3b0a267d7953b2dd9e5dca437aa6
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/**
 * @ProjectName: null
 * @Copyright: null
 * @address: https://www.ys7.com
 * @date: 2014-6-16 下午4:58:48
 * @Description: null
 */
package com.videogo.remoteplayback.list.bean;
 
import java.util.Calendar;
 
public class ClickedListItem {
 
    private int index;
 
    private int type;
 
    private long beginTime;
 
    private long endTime;
 
    private Calendar uiPlayTimeOnStop = null;
 
    private int position;
    
    private int fileSize;
 
    public int getIndex() {
        return index;
    }
 
    public ClickedListItem(int index, int type, long beginTime, long endTime, int position) {
        super();
        this.index = index;
        this.type = type;
        this.beginTime = beginTime;
        this.endTime = endTime;
        this.position = position;
    }
 
    public void setIndex(int index) {
        this.index = index;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public long getBeginTime() {
        return beginTime;
    }
 
    public void setBeginTime(long beginTime) {
        this.beginTime = beginTime;
    }
 
    public long getEndTime() {
        return endTime;
    }
 
    public void setEndTime(long endTime) {
        this.endTime = endTime;
    }
 
    public Calendar getUiPlayTimeOnStop() {
        return uiPlayTimeOnStop;
    }
 
    public void setUiPlayTimeOnStop(Calendar uiPlayTimeOnStop) {
        this.uiPlayTimeOnStop = uiPlayTimeOnStop;
    }
 
    public int getPosition() {
        return position;
    }
 
    public void setPosition(int position) {
        this.position = position;
    }
 
    public int getFileSize() {
        return fileSize;
    }
 
    public void setFileSize(int fileSize) {
        this.fileSize = fileSize;
    }
 
    @Override
    public String toString() {
        return "[index=" + index + ", type=" + type + "]";
    }
 
}