source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/SDDeviceItem.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: 17.4 KB
RevLine 
[832]1package de.dass_it.vanhelsing.gui.items;
[844]2public class SDDeviceItem extends ItemType implements UserObjectItem{
[858]3 /**
4 * @uml.property name="name"
5 */
[832]6 private String name;
[858]7 /**
8 * @uml.property name="archivedevice"
9 */
10 private String archivedevice;
11 /**
12 * @uml.property name="devicetype"
13 */
14 private String devicetype;
15 /**
16 * @uml.property name="mediatype"
17 */
18 private String mediatype;
19 /**
20 * @uml.property name="autochanger"
21 */
[832]22 private String autochanger;
[858]23 /**
24 * @uml.property name="changerdevice"
25 */
26 private String changerdevice;
27 /**
28 * @uml.property name="changercommand"
29 */
30 private String changercommand;
31 /**
32 * @uml.property name="alertcommand"
33 */
34 private String alertcommand;
35 /**
36 * @uml.property name="driveindex"
37 */
38 private String driveindex;
39 /**
40 * @uml.property name="autoselect"
41 */
[832]42 private String autoselect;
[858]43 /**
44 * @uml.property name="maximumconcurentjobs"
45 */
46 private String maximumconcurentjobs;
47 /**
48 * @uml.property name="maximumchangerwait"
49 */
50 private String maximumchangerwait;
51 /**
52 * @uml.property name="maximumrewindwait"
53 */
54 private String maximumrewindwait;
55 /**
56 * @uml.property name="maximumopenwait"
57 */
58 private String maximumopenwait;
59 /**
60 * @uml.property name="alwaysopen"
61 */
62 private String alwaysopen;
63 /**
64 * @uml.property name="volumepollinterval"
65 */
66 private String volumepollinterval;
67 /**
68 * @uml.property name="closeonpoll"
69 */
70 private String closeonpoll;
[832]71 //private String maximumOpenWait;
[858]72 /**
73 * @uml.property name="removablemedia"
74 */
[832]75 private String removablemedia;
[858]76 /**
77 * @uml.property name="randomaccess"
78 */
[832]79 private String randomaccess;
[858]80 /**
81 * @uml.property name="requiresmount"
82 */
83 private String requiresmount;
84 /**
85 * @uml.property name="mountpoint"
86 */
87 private String mountpoint;
88 /**
89 * @uml.property name="mountcommand"
90 */
91 private String mountcommand;
92 /**
93 * @uml.property name="unmountcommand"
94 */
95 private String unmountcommand;
96 /**
97 * @uml.property name="blockchecksum"
98 */
99 private String blockchecksum;
100 /**
101 * @uml.property name="minimumblocksize"
102 */
[832]103 private String minimumblocksize;
[858]104 /**
105 * @uml.property name="maximumblocksize"
106 */
[832]107 private String maximumblocksize;
[858]108 /**
109 * @uml.property name="hardwareendofmedium"
110 */
111 private String hardwareendofmedium;
112 /**
113 * @uml.property name="fastforwardspacefile"
114 */
115 private String fastforwardspacefile;
116 /**
117 * @uml.property name="usemtiocget"
118 */
119 private String usemtiocget;
120 /**
121 * @uml.property name="bsfateom"
122 */
123 private String bsfateom;
124 /**
125 * @uml.property name="twoeof"
126 */
127 private String twoeof;
128 /**
129 * @uml.property name="backwardspacerecord"
130 */
131 private String backwardspacerecord;
132 /**
133 * @uml.property name="backwardspacefile"
134 */
135 private String backwardspacefile;
136 /**
137 * @uml.property name="forwardspacerecord"
138 */
139 private String forwardspacerecord;
140 /**
141 * @uml.property name="forwardspacefile"
142 */
143 private String forwardspacefile;
144 /**
145 * @uml.property name="offlineonunmount"
146 */
147 private String offlineonunmount;
148 /**
149 * @uml.property name="maximumconcurrentjobs"
150 */
151 private String maximumconcurrentjobs;
152 /**
153 * @uml.property name="maximumvolumesize"
154 */
155 private String maximumvolumesize;
156 /**
157 * @uml.property name="maximumfilesize"
158 */
159 private String maximumfilesize;
160 /**
161 * @uml.property name="blockpositioning"
162 */
163 private String blockpositioning;
164 /**
165 * @uml.property name="maximumnetworkbuffersize"
166 */
167 private String maximumnetworkbuffersize;
168 /**
169 * @uml.property name="maximumspoolsize"
170 */
171 private String maximumspoolsize;
172 /**
173 * @uml.property name="maximumjobspoolsize"
174 */
175 private String maximumjobspoolsize;
176 /**
177 * @uml.property name="spooldirectory"
178 */
179 private String spooldirectory;
180 /**
181 * @uml.property name="maximumpartsize"
182 */
183 private String maximumpartsize;
[832]184
185 public SDDeviceItem(){}
186
[858]187 /**
188 * @return
189 * @uml.property name="name"
190 */
[832]191 public String getName() {
192 return name;
193 }
194
[858]195 /**
196 * @param name
197 * @uml.property name="name"
198 */
[832]199 public void setName(String name) {
200 this.name = name;
201 }
202
[858]203 /**
204 * @return
205 * @uml.property name="archivedevice"
206 */
207 public String getArchivedevice() {
208 return archivedevice;
[832]209 }
210
[858]211 /**
212 * @param archivedevice
213 * @uml.property name="archivedevice"
214 */
215 public void setArchivedevice(String archivedevice) {
216 this.archivedevice = archivedevice;
[832]217 }
218
[858]219 /**
220 * @return
221 * @uml.property name="devicetype"
222 */
223 public String getDevicetype() {
224 return devicetype;
[832]225 }
226
[858]227 /**
228 * @param devicetype
229 * @uml.property name="devicetype"
230 */
231 public void setDevicetype(String devicetype) {
232 this.devicetype = devicetype;
[832]233 }
234
[858]235 /**
236 * @return
237 * @uml.property name="mediatype"
238 */
239 public String getMediatype() {
240 return mediatype;
[832]241 }
242
[858]243 /**
244 * @param mediatype
245 * @uml.property name="mediatype"
246 */
247 public void setMediatype(String mediatype) {
248 this.mediatype = mediatype;
[832]249 }
250
[858]251 /**
252 * @return
253 * @uml.property name="autochanger"
254 */
[832]255 public String getAutochanger() {
256 return autochanger;
257 }
258
[858]259 /**
260 * @param autochanger
261 * @uml.property name="autochanger"
262 */
[832]263 public void setAutochanger(String autochanger) {
264 this.autochanger = autochanger;
265 }
266
[858]267 /**
268 * @return
269 * @uml.property name="changerdevice"
270 */
271 public String getChangerdevice() {
272 return changerdevice;
[832]273 }
274
[858]275 /**
276 * @param changerdevice
277 * @uml.property name="changerdevice"
278 */
279 public void setChangerdevice(String changerdevice) {
280 this.changerdevice = changerdevice;
[832]281 }
282
[858]283 /**
284 * @return
285 * @uml.property name="changercommand"
286 */
287 public String getChangercommand() {
288 return changercommand;
[832]289 }
290
[858]291 /**
292 * @param changercommand
293 * @uml.property name="changercommand"
294 */
295 public void setChangercommand(String changercommand) {
296 this.changercommand = changercommand;
[832]297 }
298
[858]299 /**
300 * @return
301 * @uml.property name="alertcommand"
302 */
303 public String getAlertcommand() {
304 return alertcommand;
[832]305 }
306
[858]307 /**
308 * @param alertcommand
309 * @uml.property name="alertcommand"
310 */
311 public void setAlertcommand(String alertcommand) {
312 this.alertcommand = alertcommand;
[832]313 }
314
[858]315 /**
316 * @return
317 * @uml.property name="driveindex"
318 */
319 public String getDriveindex() {
320 return driveindex;
[832]321 }
322
[858]323 /**
324 * @param driveindex
325 * @uml.property name="driveindex"
326 */
327 public void setDriveindex(String driveindex) {
328 this.driveindex = driveindex;
[832]329 }
330
[858]331 /**
332 * @return
333 * @uml.property name="autoselect"
334 */
[832]335 public String getAutoselect() {
336 return autoselect;
337 }
338
[858]339 /**
340 * @param autoselect
341 * @uml.property name="autoselect"
342 */
[832]343 public void setAutoselect(String autoselect) {
344 this.autoselect = autoselect;
345 }
346
[858]347 /**
348 * @return
349 * @uml.property name="maximumconcurentjobs"
350 */
351 public String getMaximumconcurentjobs() {
352 return maximumconcurentjobs;
[832]353 }
354
[858]355 /**
356 * @param maximumconcurentjobs
357 * @uml.property name="maximumconcurentjobs"
358 */
359 public void setMaximumconcurentjobs(String maximumconcurentjobs) {
360 this.maximumconcurentjobs = maximumconcurentjobs;
[832]361 }
362
[858]363 /**
364 * @return
365 * @uml.property name="maximumchangerwait"
366 */
367 public String getMaximumchangerwait() {
368 return maximumchangerwait;
[832]369 }
370
[858]371 /**
372 * @param maximumchangerwait
373 * @uml.property name="maximumchangerwait"
374 */
375 public void setMaximumchangerwait(String maximumchangerwait) {
376 this.maximumchangerwait = maximumchangerwait;
[832]377 }
378
[858]379 /**
380 * @return
381 * @uml.property name="maximumrewindwait"
382 */
383 public String getMaximumrewindwait() {
384 return maximumrewindwait;
[832]385 }
386
[858]387 /**
388 * @param maximumrewindwait
389 * @uml.property name="maximumrewindwait"
390 */
391 public void setMaximumrewindwait(String maximumrewindwait) {
392 this.maximumrewindwait = maximumrewindwait;
[832]393 }
394
[858]395 /**
396 * @return
397 * @uml.property name="maximumopenwait"
398 */
399 public String getMaximumopenwait() {
400 return maximumopenwait;
[832]401 }
402
[858]403 /**
404 * @param maximumopenwait
405 * @uml.property name="maximumopenwait"
406 */
407 public void setMaximumopenwait(String maximumopenwait) {
408 this.maximumopenwait = maximumopenwait;
[832]409 }
410
[858]411 /**
412 * @return
413 * @uml.property name="alwaysopen"
414 */
415 public String getAlwaysopen() {
416 return alwaysopen;
[832]417 }
418
[858]419 /**
420 * @param alwaysopen
421 * @uml.property name="alwaysopen"
422 */
423 public void setAlwaysopen(String alwaysopen) {
424 this.alwaysopen = alwaysopen;
[832]425 }
426
[858]427 /**
428 * @return
429 * @uml.property name="volumepollinterval"
430 */
431 public String getVolumepollinterval() {
432 return volumepollinterval;
[832]433 }
434
[858]435 /**
436 * @param volumepollinterval
437 * @uml.property name="volumepollinterval"
438 */
439 public void setVolumepollinterval(String volumepollinterval) {
440 this.volumepollinterval = volumepollinterval;
[832]441 }
442
[858]443 /**
444 * @return
445 * @uml.property name="closeonpoll"
446 */
447 public String getCloseonpoll() {
448 return closeonpoll;
[832]449 }
450
[858]451 /**
452 * @param closeonpoll
453 * @uml.property name="closeonpoll"
454 */
455 public void setCloseonpoll(String closeonpoll) {
456 this.closeonpoll = closeonpoll;
[832]457 }
458
[858]459 /**
460 * @return
461 * @uml.property name="removablemedia"
462 */
[832]463 public String getRemovablemedia() {
464 return removablemedia;
465 }
466
[858]467 /**
468 * @param removablemedia
469 * @uml.property name="removablemedia"
470 */
[832]471 public void setRemovablemedia(String removablemedia) {
472 this.removablemedia = removablemedia;
473 }
474
[858]475 /**
476 * @return
477 * @uml.property name="randomaccess"
478 */
[832]479 public String getRandomaccess() {
480 return randomaccess;
481 }
482
[858]483 /**
484 * @param randomaccess
485 * @uml.property name="randomaccess"
486 */
[832]487 public void setRandomaccess(String randomaccess) {
488 this.randomaccess = randomaccess;
489 }
490
[858]491 /**
492 * @return
493 * @uml.property name="requiresmount"
494 */
495 public String getRequiresmount() {
496 return requiresmount;
[832]497 }
498
[858]499 /**
500 * @param requiresmount
501 * @uml.property name="requiresmount"
502 */
503 public void setRequiresmount(String requiresmount) {
504 this.requiresmount = requiresmount;
[832]505 }
506
[858]507 /**
508 * @return
509 * @uml.property name="mountpoint"
510 */
511 public String getMountpoint() {
512 return mountpoint;
[832]513 }
514
[858]515 /**
516 * @param mountpoint
517 * @uml.property name="mountpoint"
518 */
519 public void setMountpoint(String mountpoint) {
520 this.mountpoint = mountpoint;
[832]521 }
522
[858]523 /**
524 * @return
525 * @uml.property name="mountcommand"
526 */
527 public String getMountcommand() {
528 return mountcommand;
[832]529 }
530
[858]531 /**
532 * @param mountcommand
533 * @uml.property name="mountcommand"
534 */
535 public void setMountcommand(String mountcommand) {
536 this.mountcommand = mountcommand;
[832]537 }
538
[858]539 /**
540 * @return
541 * @uml.property name="unmountcommand"
542 */
543 public String getUnmountcommand() {
544 return unmountcommand;
[832]545 }
546
[858]547 /**
548 * @param unmountcommand
549 * @uml.property name="unmountcommand"
550 */
551 public void setUnmountcommand(String unmountcommand) {
552 this.unmountcommand = unmountcommand;
[832]553 }
554
[858]555 /**
556 * @return
557 * @uml.property name="blockchecksum"
558 */
559 public String getBlockchecksum() {
560 return blockchecksum;
[832]561 }
562
[858]563 /**
564 * @param blockchecksum
565 * @uml.property name="blockchecksum"
566 */
567 public void setBlockchecksum(String blockchecksum) {
568 this.blockchecksum = blockchecksum;
[832]569 }
570
[858]571 /**
572 * @return
573 * @uml.property name="minimumblocksize"
574 */
[832]575 public String getMinimumblocksize() {
576 return minimumblocksize;
577 }
578
[858]579 /**
580 * @param minimumblocksize
581 * @uml.property name="minimumblocksize"
582 */
[832]583 public void setMinimumblocksize(String minimumblocksize) {
584 this.minimumblocksize = minimumblocksize;
585 }
586
[858]587 /**
588 * @return
589 * @uml.property name="maximumblocksize"
590 */
[832]591 public String getMaximumblocksize() {
592 return maximumblocksize;
593 }
594
[858]595 /**
596 * @param maximumblocksize
597 * @uml.property name="maximumblocksize"
598 */
[832]599 public void setMaximumblocksize(String maximumblocksize) {
600 this.maximumblocksize = maximumblocksize;
601 }
602
[858]603 /**
604 * @return
605 * @uml.property name="hardwareendofmedium"
606 */
607 public String getHardwareendofmedium() {
608 return hardwareendofmedium;
[832]609 }
610
[858]611 /**
612 * @param hardwareendofmedium
613 * @uml.property name="hardwareendofmedium"
614 */
615 public void setHardwareendofmedium(String hardwareendofmedium) {
616 this.hardwareendofmedium = hardwareendofmedium;
[832]617 }
618
[858]619 /**
620 * @return
621 * @uml.property name="fastforwardspacefile"
622 */
623 public String getFastforwardspacefile() {
624 return fastforwardspacefile;
[832]625 }
626
[858]627 /**
628 * @param fastforwardspacefile
629 * @uml.property name="fastforwardspacefile"
630 */
631 public void setFastforwardspacefile(String fastforwardspacefile) {
632 this.fastforwardspacefile = fastforwardspacefile;
[832]633 }
634
[858]635 /**
636 * @return
637 * @uml.property name="usemtiocget"
638 */
639 public String getUsemtiocget() {
640 return usemtiocget;
[832]641 }
642
[858]643 /**
644 * @param usemtiocget
645 * @uml.property name="usemtiocget"
646 */
647 public void setUsemtiocget(String usemtiocget) {
648 this.usemtiocget = usemtiocget;
[832]649 }
650
[858]651 /**
652 * @return
653 * @uml.property name="bsfateom"
654 */
655 public String getBsfateom() {
656 return bsfateom;
[832]657 }
658
[858]659 /**
660 * @param bsfateom
661 * @uml.property name="bsfateom"
662 */
663 public void setBsfateom(String bsfateom) {
664 this.bsfateom = bsfateom;
[832]665 }
666
[858]667 /**
668 * @return
669 * @uml.property name="twoeof"
670 */
671 public String getTwoeof() {
672 return twoeof;
[832]673 }
674
[858]675 /**
676 * @param twoeof
677 * @uml.property name="twoeof"
678 */
679 public void setTwoeof(String twoeof) {
680 this.twoeof = twoeof;
[832]681 }
682
[858]683 /**
684 * @return
685 * @uml.property name="backwardspacerecord"
686 */
687 public String getBackwardspacerecord() {
688 return backwardspacerecord;
[832]689 }
690
[858]691 /**
692 * @param backwardspacerecord
693 * @uml.property name="backwardspacerecord"
694 */
695 public void setBackwardspacerecord(String backwardspacerecord) {
696 this.backwardspacerecord = backwardspacerecord;
[832]697 }
698
[858]699 /**
700 * @return
701 * @uml.property name="backwardspacefile"
702 */
703 public String getBackwardspacefile() {
704 return backwardspacefile;
[832]705 }
706
[858]707 /**
708 * @param backwardspacefile
709 * @uml.property name="backwardspacefile"
710 */
711 public void setBackwardspacefile(String backwardspacefile) {
712 this.backwardspacefile = backwardspacefile;
[832]713 }
714
[858]715 /**
716 * @return
717 * @uml.property name="forwardspacerecord"
718 */
719 public String getForwardspacerecord() {
720 return forwardspacerecord;
[832]721 }
722
[858]723 /**
724 * @param forwardspacerecord
725 * @uml.property name="forwardspacerecord"
726 */
727 public void setForwardspacerecord(String forwardspacerecord) {
728 this.forwardspacerecord = forwardspacerecord;
[832]729 }
730
[858]731 /**
732 * @return
733 * @uml.property name="forwardspacefile"
734 */
735 public String getForwardspacefile() {
736 return forwardspacefile;
[832]737 }
738
[858]739 /**
740 * @param forwardspacefile
741 * @uml.property name="forwardspacefile"
742 */
743 public void setForwardspacefile(String forwardspacefile) {
744 this.forwardspacefile = forwardspacefile;
[832]745 }
746
[858]747 /**
748 * @return
749 * @uml.property name="offlineonunmount"
750 */
751 public String getOfflineonunmount() {
752 return offlineonunmount;
[832]753 }
754
[858]755 /**
756 * @param offlineonunmount
757 * @uml.property name="offlineonunmount"
758 */
759 public void setOfflineonunmount(String offlineonunmount) {
760 this.offlineonunmount = offlineonunmount;
[832]761 }
762
[858]763 /**
764 * @return
765 * @uml.property name="maximumconcurrentjobs"
766 */
767 public String getMaximumconcurrentjobs() {
768 return maximumconcurrentjobs;
[832]769 }
770
[858]771 /**
772 * @param maximumconcurrentjobs
773 * @uml.property name="maximumconcurrentjobs"
774 */
775 public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
776 this.maximumconcurrentjobs = maximumconcurrentjobs;
[832]777 }
778
[858]779 /**
780 * @return
781 * @uml.property name="maximumvolumesize"
782 */
783 public String getMaximumvolumesize() {
784 return maximumvolumesize;
[832]785 }
786
[858]787 /**
788 * @param maximumvolumesize
789 * @uml.property name="maximumvolumesize"
790 */
791 public void setMaximumvolumesize(String maximumvolumesize) {
792 this.maximumvolumesize = maximumvolumesize;
[832]793 }
794
[858]795 /**
796 * @return
797 * @uml.property name="maximumfilesize"
798 */
799 public String getMaximumfilesize() {
800 return maximumfilesize;
[832]801 }
802
[858]803 /**
804 * @param maximumfilesize
805 * @uml.property name="maximumfilesize"
806 */
807 public void setMaximumfilesize(String maximumfilesize) {
808 this.maximumfilesize = maximumfilesize;
[832]809 }
810
[858]811 /**
812 * @return
813 * @uml.property name="blockpositioning"
814 */
815 public String getBlockpositioning() {
816 return blockpositioning;
[832]817 }
818
[858]819 /**
820 * @param blockpositioning
821 * @uml.property name="blockpositioning"
822 */
823 public void setBlockpositioning(String blockpositioning) {
824 this.blockpositioning = blockpositioning;
[832]825 }
826
[858]827 /**
828 * @return
829 * @uml.property name="maximumnetworkbuffersize"
830 */
831 public String getMaximumnetworkbuffersize() {
832 return maximumnetworkbuffersize;
[832]833 }
834
[858]835 /**
836 * @param maximumnetworkbuffersize
837 * @uml.property name="maximumnetworkbuffersize"
838 */
839 public void setMaximumnetworkbuffersize(String maximumnetworkbuffersize) {
840 this.maximumnetworkbuffersize = maximumnetworkbuffersize;
[832]841 }
842
[858]843 /**
844 * @return
845 * @uml.property name="maximumspoolsize"
846 */
847 public String getMaximumspoolsize() {
848 return maximumspoolsize;
[832]849 }
850
[858]851 /**
852 * @param maximumspoolsize
853 * @uml.property name="maximumspoolsize"
854 */
855 public void setMaximumspoolsize(String maximumspoolsize) {
856 this.maximumspoolsize = maximumspoolsize;
[832]857 }
858
[858]859 /**
860 * @return
861 * @uml.property name="maximumjobspoolsize"
862 */
863 public String getMaximumjobspoolsize() {
864 return maximumjobspoolsize;
[832]865 }
866
[858]867 /**
868 * @param maximumjobspoolsize
869 * @uml.property name="maximumjobspoolsize"
870 */
871 public void setMaximumjobspoolsize(String maximumjobspoolsize) {
872 this.maximumjobspoolsize = maximumjobspoolsize;
[832]873 }
874
[858]875 /**
876 * @return
877 * @uml.property name="spooldirectory"
878 */
879 public String getSpooldirectory() {
880 return spooldirectory;
[832]881 }
882
[858]883 /**
884 * @param spooldirectory
885 * @uml.property name="spooldirectory"
886 */
887 public void setSpooldirectory(String spooldirectory) {
888 this.spooldirectory = spooldirectory;
[832]889 }
890
[858]891 /**
892 * @return
893 * @uml.property name="maximumpartsize"
894 */
895 public String getMaximumpartsize() {
896 return maximumpartsize;
[832]897 }
898
[858]899 /**
900 * @param maximumpartsize
901 * @uml.property name="maximumpartsize"
902 */
903 public void setMaximumpartsize(String maximumpartsize) {
904 this.maximumpartsize = maximumpartsize;
[832]905 }
[858]906
[832]907
908
909}
Note: See TracBrowser for help on using the repository browser.