Ignore:
Timestamp:
Apr 9, 2010, 10:56:07 AM (14 years ago)
Author:
tobias
Message:

visual design slightly modified. tree functions extended

File:
1 edited

Legend:

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

    r844 r858  
    22public class StorageItem extends ItemType implements UserObjectItem{
    33
     4        /**
     5         * @uml.property  name="name"
     6         */
    47        private String name;
     8        /**
     9         * @uml.property  name="address"
     10         */
    511        private String address;
    6         private String sdPort;
     12        /**
     13         * @uml.property  name="sdport"
     14         */
     15        private String sdport;
     16        /**
     17         * @uml.property  name="password"
     18         */
    719        private String password;
     20        /**
     21         * @uml.property  name="device"
     22         */
    823        private String device;
    9         private String mediaType;
     24        /**
     25         * @uml.property  name="mediatype"
     26         */
     27        private String mediatype;
     28        /**
     29         * @uml.property  name="autochanger"
     30         */
    1031        private String autochanger;
    11         private String maximumConcurrentJobs;
    12         private String allowCompression;
    13         private String heartbeatInterval;
     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;
    1444       
    1545        public StorageItem() {}
    16        
     46
     47        /**
     48         * @return
     49         * @uml.property  name="name"
     50         */
    1751        public String getName() {
    1852                return name;
    1953        }
    2054
     55        /**
     56         * @param name
     57         * @uml.property  name="name"
     58         */
    2159        public void setName(String name) {
    2260                this.name = name;
    2361        }
    2462
     63        /**
     64         * @return
     65         * @uml.property  name="address"
     66         */
    2567        public String getAddress() {
    2668                return address;
    2769        }
    2870
     71        /**
     72         * @param address
     73         * @uml.property  name="address"
     74         */
    2975        public void setAddress(String address) {
    3076                this.address = address;
    3177        }
    3278
    33         public String getSdPort() {
    34                 return sdPort;
    35         }
    36 
    37         public void setSdPort(String sdPort) {
    38                 this.sdPort = sdPort;
    39         }
    40 
     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         */
    4199        public String getPassword() {
    42100                return password;
    43101        }
    44102
     103        /**
     104         * @param password
     105         * @uml.property  name="password"
     106         */
    45107        public void setPassword(String password) {
    46108                this.password = password;
    47109        }
    48110
     111        /**
     112         * @return
     113         * @uml.property  name="device"
     114         */
    49115        public String getDevice() {
    50116                return device;
    51117        }
    52118
     119        /**
     120         * @param device
     121         * @uml.property  name="device"
     122         */
    53123        public void setDevice(String device) {
    54124                this.device = device;
    55125        }
    56126
    57         public String getMediaType() {
    58                 return mediaType;
    59         }
    60 
    61         public void setMediaType(String mediaType) {
    62                 this.mediaType = mediaType;
    63         }
    64 
     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         */
    65147        public String getAutochanger() {
    66148                return autochanger;
    67149        }
    68150
     151        /**
     152         * @param autochanger
     153         * @uml.property  name="autochanger"
     154         */
    69155        public void setAutochanger(String autochanger) {
    70156                this.autochanger = autochanger;
    71157        }
    72158
    73         public String getMaximumConcurrentJobs() {
    74                 return maximumConcurrentJobs;
    75         }
    76 
    77         public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {
    78                 this.maximumConcurrentJobs = maximumConcurrentJobs;
    79         }
    80 
    81         public String getAllowCompression() {
    82                 return allowCompression;
    83         }
    84 
    85         public void setAllowCompression(String allowCompression) {
    86                 this.allowCompression = allowCompression;
    87         }
    88 
    89         public String getHeartbeatInterval() {
    90                 return heartbeatInterval;
    91         }
    92 
    93         public void setHeartbeatInterval(String heartbeatInterval) {
    94                 this.heartbeatInterval = heartbeatInterval;
    95         }
     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
    96208
    97209}
Note: See TracChangeset for help on using the changeset viewer.