source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FileSetItem.java@ 858

Last change on this file since 858 was 858, checked in by tobias, on Apr 9, 2010 at 10:56:07 AM

visual design slightly modified. tree functions extended

File size: 1.6 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2
3public class FileSetItem extends ItemType implements UserObjectItem {
4 /**
5 * @uml.property name="name"
6 */
7 private String name;
8 /**
9 * @uml.property name="ignorefilesetchanges"
10 */
11 private String ignorefilesetchanges;
12 /**
13 * @uml.property name="enablevss"
14 */
15 private String enablevss;
16 /**
17 * @uml.property name="include"
18 */
19 private String include;
20 /**
21 * @uml.property name="exclude"
22 */
23 private String exclude;
24
25 public FileSetItem() {}
26
27 /**
28 * @return
29 * @uml.property name="name"
30 */
31 public String getName() {
32 return name;
33 }
34
35 /**
36 * @param name
37 * @uml.property name="name"
38 */
39 public void setName(String name) {
40 this.name = name;
41 }
42
43 public String getIgnoreFileSetChanges() {
44 return ignorefilesetchanges;
45 }
46
47 public void setIgnoreFileSetChanges(String ignoreFileSetChanges) {
48 this.ignorefilesetchanges = ignoreFileSetChanges;
49 }
50
51 /**
52 * @return
53 * @uml.property name="enablevss"
54 */
55 public String getEnablevss() {
56 return enablevss;
57 }
58
59 /**
60 * @param enablevss
61 * @uml.property name="enablevss"
62 */
63 public void setEnablevss(String enablevss) {
64 this.enablevss = enablevss;
65 }
66
67 /**
68 * @return
69 * @uml.property name="include"
70 */
71 public String getInclude() {
72 return include;
73 }
74
75 /**
76 * @param include
77 * @uml.property name="include"
78 */
79 public void setInclude(String include) {
80 this.include = include;
81 }
82
83 /**
84 * @return
85 * @uml.property name="exclude"
86 */
87 public String getExclude() {
88 return exclude;
89 }
90
91 /**
92 * @param exclude
93 * @uml.property name="exclude"
94 */
95 public void setExclude(String exclude) {
96 this.exclude = exclude;
97 }
98}
Note: See TracBrowser for help on using the repository browser.