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/SDStorageItem.java

    r858 r865  
    11package de.dass_it.vanhelsing.gui.items;
    22public class SDStorageItem extends ItemType implements UserObjectItem{
    3         /**
    4          * @uml.property  name="name"
    5          */
    63        private String name;
    7         /**
    8          * @uml.property  name="workingdirectory"
    9          */
    104        private String workingdirectory;
    11         /**
    12          * @uml.property  name="piddirectory"
    13          */
    145        private String piddirectory;
    15         /**
    16          * @uml.property  name="heartbeatinterval"
    17          */
    186        private String heartbeatinterval;
    19         /**
    20          * @uml.property  name="clientconnectwait"
    21          */
    227        private String clientconnectwait;
    23         /**
    24          * @uml.property  name="maximumconcurrentjobs"
    25          */
    268        private String maximumconcurrentjobs;
    27         /**
    28          * @uml.property  name="sdaddresses"
    29          */
    309        private String sdaddresses;
    31         /**
    32          * @uml.property  name="sdport"
    33          */
    3410        private String sdport;
    35         /**
    36          * @uml.property  name="sdaddress"
    37          */
    3811        private String sdaddress;
    3912
     
    4417                setPiddirectory(piddirectory);
    4518        }
    46         /**
    47          * @return
    48          * @uml.property  name="name"
    49          */
    5019        public String getName() {
    5120                return name;
    5221        }
    53         /**
    54          * @param name
    55          * @uml.property  name="name"
    56          */
    5722        public void setName(String name) {
    5823                this.name = name;
    5924        }
    60         /**
    61          * @return
    62          * @uml.property  name="workingdirectory"
    63          */
    6425        public String getWorkingdirectory() {
    6526                return workingdirectory;
    6627        }
    67         /**
    68          * @param workingdirectory
    69          * @uml.property  name="workingdirectory"
    70          */
    7128        public void setWorkingdirectory(String workingdirectory) {
    7229                this.workingdirectory = workingdirectory;
    7330        }
    74         /**
    75          * @return
    76          * @uml.property  name="piddirectory"
    77          */
    7831        public String getPiddirectory() {
    7932                return piddirectory;
    8033        }
    81         /**
    82          * @param piddirectory
    83          * @uml.property  name="piddirectory"
    84          */
    8534        public void setPiddirectory(String piddirectory) {
    8635                this.piddirectory = piddirectory;
    8736        }
    88         /**
    89          * @return
    90          * @uml.property  name="heartbeatinterval"
    91          */
    9237        public String getHeartbeatinterval() {
    9338                return heartbeatinterval;
    9439        }
    95         /**
    96          * @param heartbeatinterval
    97          * @uml.property  name="heartbeatinterval"
    98          */
    9940        public void setHeartbeatinterval(String heartbeatinterval) {
    10041                this.heartbeatinterval = heartbeatinterval;
    10142        }
    102         /**
    103          * @return
    104          * @uml.property  name="clientconnectwait"
    105          */
    10643        public String getClientconnectwait() {
    10744                return clientconnectwait;
    10845        }
    109         /**
    110          * @param clientconnectwait
    111          * @uml.property  name="clientconnectwait"
    112          */
    11346        public void setClientconnectwait(String clientconnectwait) {
    11447                this.clientconnectwait = clientconnectwait;
    11548        }
    116         /**
    117          * @return
    118          * @uml.property  name="maximumconcurrentjobs"
    119          */
    12049        public String getMaximumconcurrentjobs() {
    12150                return maximumconcurrentjobs;
    12251        }
    123         /**
    124          * @param maximumconcurrentjobs
    125          * @uml.property  name="maximumconcurrentjobs"
    126          */
    12752        public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
    12853                this.maximumconcurrentjobs = maximumconcurrentjobs;
    12954        }
    130         /**
    131          * @return
    132          * @uml.property  name="sdaddresses"
    133          */
    13455        public String getSdaddresses() {
    13556                return sdaddresses;
    13657        }
    137         /**
    138          * @param sdaddresses
    139          * @uml.property  name="sdaddresses"
    140          */
    14158        public void setSdaddresses(String sdaddresses) {
    14259                this.sdaddresses = sdaddresses;
    14360        }
    144         /**
    145          * @return
    146          * @uml.property  name="sdport"
    147          */
    14861        public String getSdport() {
    14962                return sdport;
    15063        }
    151         /**
    152          * @param sdport
    153          * @uml.property  name="sdport"
    154          */
    15564        public void setSdport(String sdport) {
    15665                this.sdport = sdport;
    15766        }
    158         /**
    159          * @return
    160          * @uml.property  name="sdaddress"
    161          */
    16267        public String getSdaddress() {
    16368                return sdaddress;
    16469        }
    165         /**
    166          * @param sdaddress
    167          * @uml.property  name="sdaddress"
    168          */
    16970        public void setSdaddress(String sdaddress) {
    17071                this.sdaddress = sdaddress;
Note: See TracChangeset for help on using the changeset viewer.