Ignore:
Timestamp:
Apr 20, 2010, 5:21:42 PM (14 years ago)
Author:
tobias
Message:

comments added
all methods of the wsdl file implemented

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/StorageItem.java

    r858 r865  
    22public class StorageItem extends ItemType implements UserObjectItem{
    33
    4         /**
    5          * @uml.property  name="name"
    6          */
    74        private String name;
    8         /**
    9          * @uml.property  name="address"
    10          */
    115        private String address;
    12         /**
    13          * @uml.property  name="sdport"
    14          */
    156        private String sdport;
    16         /**
    17          * @uml.property  name="password"
    18          */
    197        private String password;
    20         /**
    21          * @uml.property  name="device"
    22          */
    238        private String device;
    24         /**
    25          * @uml.property  name="mediatype"
    26          */
    279        private String mediatype;
    28         /**
    29          * @uml.property  name="autochanger"
    30          */
    3110        private String autochanger;
    32         /**
    33          * @uml.property  name="maximumconcurrentjobs"
    34          */
    3511        private String maximumconcurrentjobs;
    36         /**
    37          * @uml.property  name="allowcompression"
    38          */
    3912        private String allowcompression;
    40         /**
    41          * @uml.property  name="heartbeatinterval"
    42          */
    4313        private String heartbeatinterval;
    4414       
    4515        public StorageItem() {}
    4616
    47         /**
    48          * @return
    49          * @uml.property  name="name"
    50          */
    5117        public String getName() {
    5218                return name;
    5319        }
    5420
    55         /**
    56          * @param name
    57          * @uml.property  name="name"
    58          */
    5921        public void setName(String name) {
    6022                this.name = name;
    6123        }
    6224
    63         /**
    64          * @return
    65          * @uml.property  name="address"
    66          */
    6725        public String getAddress() {
    6826                return address;
    6927        }
    7028
    71         /**
    72          * @param address
    73          * @uml.property  name="address"
    74          */
    7529        public void setAddress(String address) {
    7630                this.address = address;
    7731        }
    7832
    79         /**
    80          * @return
    81          * @uml.property  name="sdport"
    82          */
    8333        public String getSdport() {
    8434                return sdport;
    8535        }
    8636
    87         /**
    88          * @param sdport
    89          * @uml.property  name="sdport"
    90          */
    9137        public void setSdport(String sdport) {
    9238                this.sdport = sdport;
    9339        }
    9440
    95         /**
    96          * @return
    97          * @uml.property  name="password"
    98          */
    9941        public String getPassword() {
    10042                return password;
    10143        }
    10244
    103         /**
    104          * @param password
    105          * @uml.property  name="password"
    106          */
    10745        public void setPassword(String password) {
    10846                this.password = password;
    10947        }
    11048
    111         /**
    112          * @return
    113          * @uml.property  name="device"
    114          */
    11549        public String getDevice() {
    11650                return device;
    11751        }
    11852
    119         /**
    120          * @param device
    121          * @uml.property  name="device"
    122          */
    12353        public void setDevice(String device) {
    12454                this.device = device;
    12555        }
    12656
    127         /**
    128          * @return
    129          * @uml.property  name="mediatype"
    130          */
    13157        public String getMediatype() {
    13258                return mediatype;
    13359        }
    13460
    135         /**
    136          * @param mediatype
    137          * @uml.property  name="mediatype"
    138          */
    13961        public void setMediatype(String mediatype) {
    14062                this.mediatype = mediatype;
    14163        }
    14264
    143         /**
    144          * @return
    145          * @uml.property  name="autochanger"
    146          */
    14765        public String getAutochanger() {
    14866                return autochanger;
    14967        }
    15068
    151         /**
    152          * @param autochanger
    153          * @uml.property  name="autochanger"
    154          */
    15569        public void setAutochanger(String autochanger) {
    15670                this.autochanger = autochanger;
    15771        }
    15872
    159         /**
    160          * @return
    161          * @uml.property  name="maximumconcurrentjobs"
    162          */
    16373        public String getMaximumconcurrentjobs() {
    16474                return maximumconcurrentjobs;
    16575        }
    16676
    167         /**
    168          * @param maximumconcurrentjobs
    169          * @uml.property  name="maximumconcurrentjobs"
    170          */
    17177        public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
    17278                this.maximumconcurrentjobs = maximumconcurrentjobs;
    17379        }
    17480
    175         /**
    176          * @return
    177          * @uml.property  name="allowcompression"
    178          */
    17981        public String getAllowcompression() {
    18082                return allowcompression;
    18183        }
    18284
    183         /**
    184          * @param allowcompression
    185          * @uml.property  name="allowcompression"
    186          */
    18785        public void setAllowcompression(String allowcompression) {
    18886                this.allowcompression = allowcompression;
    18987        }
    19088
    191         /**
    192          * @return
    193          * @uml.property  name="heartbeatinterval"
    194          */
    19589        public String getHeartbeatinterval() {
    19690                return heartbeatinterval;
    19791        }
    19892
    199         /**
    200          * @param heartbeatinterval
    201          * @uml.property  name="heartbeatinterval"
    202          */
    20393        public void setHeartbeatinterval(String heartbeatinterval) {
    20494                this.heartbeatinterval = heartbeatinterval;
Note: See TracChangeset for help on using the changeset viewer.