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