-
Notifications
You must be signed in to change notification settings - Fork 1
/
CustomListItem.java
77 lines (60 loc) · 1.79 KB
/
CustomListItem.java
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
package com.cajor.dk.dlna;
public class CustomListItem {
private int icon;
private String title;
private String description;
private String description2;
private String iconUrl;
private Boolean hideIcon;
protected CustomListItem(int icon) {
this(icon, null, false, null, null, null);
}
public CustomListItem(int icon, String title, String description) {
this(icon, null, false, title, description, null);
}
public CustomListItem(int icon, String iconUrl, Boolean hideIcon, String title,
String description, String description2) {
this.icon = icon;
this.iconUrl = iconUrl;
this.hideIcon = hideIcon;
this.title = title;
this.description = description;
this.description2 = description2;
}
public String getId() {
return "";
}
public int getIcon() {
return this.icon;
}
public void setIcon(int icon) {
this.icon = icon;
}
public String getIconUrl() {
return this.iconUrl;
}
public void setIconUrl(String iconUrl) {
this.iconUrl = iconUrl;
}
public Boolean getHideIcon() {
return this.hideIcon;
}
public void setHideIcon(Boolean hideIcon) {
this.hideIcon = hideIcon;
}
public String getTitle() {
return this.title;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getDescription2() {
return this.description2;
}
public void setDescription2(String description) {
this.description2 = description;
}
}