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