source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/StorageItem.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: 3.6 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class StorageItem extends ItemType implements UserObjectItem{
3
4 /**
5 * @uml.property name="name"
6 */
7 private String name;
8 /**
9 * @uml.property name="address"
10 */
11 private String address;
12 /**
13 * @uml.property name="sdport"
14 */
15 private String sdport;
16 /**
17 * @uml.property name="password"
18 */
19 private String password;
20 /**
21 * @uml.property name="device"
22 */
23 private String device;
24 /**
25 * @uml.property name="mediatype"
26 */
27 private String mediatype;
28 /**
29 * @uml.property name="autochanger"
30 */
31 private String autochanger;
32 /**
33 * @uml.property name="maximumconcurrentjobs"
34 */
35 private String maximumconcurrentjobs;
36 /**
37 * @uml.property name="allowcompression"
38 */
39 private String allowcompression;
40 /**
41 * @uml.property name="heartbeatinterval"
42 */
43 private String heartbeatinterval;
44
45 public StorageItem() {}
46
47 /**
48 * @return
49 * @uml.property name="name"
50 */
51 public String getName() {
52 return name;
53 }
54
55 /**
56 * @param name
57 * @uml.property name="name"
58 */
59 public void setName(String name) {
60 this.name = name;
61 }
62
63 /**
64 * @return
65 * @uml.property name="address"
66 */
67 public String getAddress() {
68 return address;
69 }
70
71 /**
72 * @param address
73 * @uml.property name="address"
74 */
75 public void setAddress(String address) {
76 this.address = address;
77 }
78
79 /**
80 * @return
81 * @uml.property name="sdport"
82 */
83 public String getSdport() {
84 return sdport;
85 }
86
87 /**
88 * @param sdport
89 * @uml.property name="sdport"
90 */
91 public void setSdport(String sdport) {
92 this.sdport = sdport;
93 }
94
95 /**
96 * @return
97 * @uml.property name="password"
98 */
99 public String getPassword() {
100 return password;
101 }
102
103 /**
104 * @param password
105 * @uml.property name="password"
106 */
107 public void setPassword(String password) {
108 this.password = password;
109 }
110
111 /**
112 * @return
113 * @uml.property name="device"
114 */
115 public String getDevice() {
116 return device;
117 }
118
119 /**
120 * @param device
121 * @uml.property name="device"
122 */
123 public void setDevice(String device) {
124 this.device = device;
125 }
126
127 /**
128 * @return
129 * @uml.property name="mediatype"
130 */
131 public String getMediatype() {
132 return mediatype;
133 }
134
135 /**
136 * @param mediatype
137 * @uml.property name="mediatype"
138 */
139 public void setMediatype(String mediatype) {
140 this.mediatype = mediatype;
141 }
142
143 /**
144 * @return
145 * @uml.property name="autochanger"
146 */
147 public String getAutochanger() {
148 return autochanger;
149 }
150
151 /**
152 * @param autochanger
153 * @uml.property name="autochanger"
154 */
155 public void setAutochanger(String autochanger) {
156 this.autochanger = autochanger;
157 }
158
159 /**
160 * @return
161 * @uml.property name="maximumconcurrentjobs"
162 */
163 public String getMaximumconcurrentjobs() {
164 return maximumconcurrentjobs;
165 }
166
167 /**
168 * @param maximumconcurrentjobs
169 * @uml.property name="maximumconcurrentjobs"
170 */
171 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
172 this.maximumconcurrentjobs = maximumconcurrentjobs;
173 }
174
175 /**
176 * @return
177 * @uml.property name="allowcompression"
178 */
179 public String getAllowcompression() {
180 return allowcompression;
181 }
182
183 /**
184 * @param allowcompression
185 * @uml.property name="allowcompression"
186 */
187 public void setAllowcompression(String allowcompression) {
188 this.allowcompression = allowcompression;
189 }
190
191 /**
192 * @return
193 * @uml.property name="heartbeatinterval"
194 */
195 public String getHeartbeatinterval() {
196 return heartbeatinterval;
197 }
198
199 /**
200 * @param heartbeatinterval
201 * @uml.property name="heartbeatinterval"
202 */
203 public void setHeartbeatinterval(String heartbeatinterval) {
204 this.heartbeatinterval = heartbeatinterval;
205 }
206
207
208
209}
Note: See TracBrowser for help on using the repository browser.