| Line | |
|---|
| 1 | package de.dass_it.vanhelsing.gui.items;
|
|---|
| 2 |
|
|---|
| 3 | public class FileSetItem extends ItemType implements UserObjectItem {
|
|---|
| 4 | private String name;
|
|---|
| 5 | private String ignoreFileSetChanges;
|
|---|
| 6 | private String enableVSS;
|
|---|
| 7 | private String include;
|
|---|
| 8 | private String exclude;
|
|---|
| 9 |
|
|---|
| 10 | public FileSetItem() {}
|
|---|
| 11 |
|
|---|
| 12 | public String getName() {
|
|---|
| 13 | return name;
|
|---|
| 14 | }
|
|---|
| 15 |
|
|---|
| 16 | public void setName(String name) {
|
|---|
| 17 | this.name = name;
|
|---|
| 18 | }
|
|---|
| 19 |
|
|---|
| 20 | public String getIgnoreFileSetChanges() {
|
|---|
| 21 | return ignoreFileSetChanges;
|
|---|
| 22 | }
|
|---|
| 23 |
|
|---|
| 24 | public void setIgnoreFileSetChanges(String ignoreFileSetChanges) {
|
|---|
| 25 | this.ignoreFileSetChanges = ignoreFileSetChanges;
|
|---|
| 26 | }
|
|---|
| 27 |
|
|---|
| 28 | public String getEnableVSS() {
|
|---|
| 29 | return enableVSS;
|
|---|
| 30 | }
|
|---|
| 31 |
|
|---|
| 32 | public void setEnableVSS(String enableVSS) {
|
|---|
| 33 | this.enableVSS = enableVSS;
|
|---|
| 34 | }
|
|---|
| 35 |
|
|---|
| 36 | public String getInclude() {
|
|---|
| 37 | return include;
|
|---|
| 38 | }
|
|---|
| 39 |
|
|---|
| 40 | public void setInclude(String include) {
|
|---|
| 41 | this.include = include;
|
|---|
| 42 | }
|
|---|
| 43 |
|
|---|
| 44 | public String getExclude() {
|
|---|
| 45 | return exclude;
|
|---|
| 46 | }
|
|---|
| 47 |
|
|---|
| 48 | public void setExclude(String exclude) {
|
|---|
| 49 | this.exclude = exclude;
|
|---|
| 50 | }
|
|---|
| 51 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.