FullVideoShareItemData.java
1.03 KB
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
package com.cnlive.share.data;
public class FullVideoShareItemData {
public static final int TYPE_WEIXIN = 0X1001;
public static final int TYPE_PENG_YOU_QUAN = 0X1002;
public static final int TYPE_WJJ = 0X1003;
public static final int TYPE_WJJ_QUAN = 0X1004;
public static final int TYPE_QQ = 0X1005;
public static final int TYPE_BROWSER = 0X1006;
public static final int TYPE_WEIBO = 0X1007;
private int iconId;
private String title;
private int type;
public FullVideoShareItemData(int iconId, String title, int type) {
this.iconId = iconId;
this.title = title;
this.type = type;
}
public int getIconId() {
return iconId;
}
public void setIconId(int iconId) {
this.iconId = iconId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
}