View Javadoc
1   package siouxsie.desktop.commands;
2   
3   public class Group {
4   
5   	private String id;
6   	private String groupId;
7   	private String text;
8   	private String description;
9   	private String longDescription;
10  	private String iconPath;
11  	private String iconType;
12  	public String getDescription() {
13  		return description;
14  	}
15  	public void setDescription(String description) {
16  		this.description = description;
17  	}
18  	public String getGroupId() {
19  		return groupId;
20  	}
21  	public void setGroupId(String groupId) {
22  		this.groupId = groupId;
23  	}
24  	public String getIconPath() {
25  		return iconPath;
26  	}
27  	public void setIconPath(String iconPath) {
28  		this.iconPath = iconPath;
29  	}
30  	public String getIconType() {
31  		return iconType;
32  	}
33  	public void setIconType(String iconType) {
34  		this.iconType = iconType;
35  	}
36  	public String getId() {
37  		return id;
38  	}
39  	public void setId(String id) {
40  		this.id = id;
41  	}
42  	public String getLongDescription() {
43  		return longDescription;
44  	}
45  	public void setLongDescription(String longDescription) {
46  		this.longDescription = longDescription;
47  	}
48  	public String getText() {
49  		return text;
50  	}
51  	public void setText(String text) {
52  		this.text = text;
53  	}
54  	
55  	
56  	
57  }