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

    r847 r858  
    22public class ClientItem 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 FDPort;
     12        /**
     13         * @uml.property  name="fdport"
     14         */
     15        private String fdport;
     16        /**
     17         * @uml.property  name="catalog"
     18         */
    719        private String catalog;
     20        /**
     21         * @uml.property  name="password"
     22         */
    823        private String password;
    9         private String fileRetention;
    10         private String jobRetention;
    11         private String autoPrune;
    12         private String maximumConcurrentJobs;
     24        /**
     25         * @uml.property  name="fileretention"
     26         */
     27        private String fileretention;
     28        /**
     29         * @uml.property  name="jobretention"
     30         */
     31        private String jobretention;
     32        /**
     33         * @uml.property  name="autoprune"
     34         */
     35        private String autoprune;
     36        /**
     37         * @uml.property  name="maximumconcurrentjobs"
     38         */
     39        private String maximumconcurrentjobs;
     40        /**
     41         * @uml.property  name="priority"
     42         */
    1343        private String priority;
    1444       
    1545        public ClientItem() {}
    1646
     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 getFDPort() {
    34                 return FDPort;
    35         }
    36 
    37         public void setFDPort(String fdPort) {
    38                 this.FDPort = fdPort;
    39         }
    40 
     79
     80        /**
     81         * @return
     82         * @uml.property  name="catalog"
     83         */
    4184        public String getCatalog() {
    4285                return catalog;
    4386        }
    4487
     88        /**
     89         * @param catalog
     90         * @uml.property  name="catalog"
     91         */
    4592        public void setCatalog(String catalog) {
    4693                this.catalog = catalog;
    4794        }
    4895
     96        /**
     97         * @return
     98         * @uml.property  name="password"
     99         */
    49100        public String getPassword() {
    50101                return password;
    51102        }
    52103
     104        /**
     105         * @param password
     106         * @uml.property  name="password"
     107         */
    53108        public void setPassword(String password) {
    54109                this.password = password;
    55110        }
    56111
    57         public String getFileRetention() {
    58                 return fileRetention;
    59         }
    60 
    61         public void setFileRetention(String fileRetention) {
    62                 this.fileRetention = fileRetention;
    63         }
    64 
    65         public String getJobRetention() {
    66                 return jobRetention;
    67         }
    68 
    69         public void setJobRetention(String jobRetention) {
    70                 this.jobRetention = jobRetention;
    71         }
    72 
    73         public String getAutoPrune() {
    74                 return autoPrune;
    75         }
    76 
    77         public void setAutoPrune(String autoPrune) {
    78                 this.autoPrune = autoPrune;
    79         }
    80 
    81         public String getMaximumConcurrentJobs() {
    82                 return maximumConcurrentJobs;
    83         }
    84 
    85         public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {
    86                 this.maximumConcurrentJobs = maximumConcurrentJobs;
    87         }
    88 
     112        /**
     113         * @return
     114         * @uml.property  name="priority"
     115         */
    89116        public String getPriority() {
    90117                return priority;
    91118        }
    92119
     120        /**
     121         * @param priority
     122         * @uml.property  name="priority"
     123         */
    93124        public void setPriority(String priority) {
    94125                this.priority = priority;
    95126        }
    96127
     128        /**
     129         * @param fdport
     130         * @uml.property  name="fdport"
     131         */
     132        public void setFdport(String fdport) {
     133                this.fdport = fdport;
     134        }
     135
     136        /**
     137         * @return
     138         * @uml.property  name="fdport"
     139         */
     140        public String getFdport() {
     141                return fdport;
     142        }
     143
     144        /**
     145         * @param fileretention
     146         * @uml.property  name="fileretention"
     147         */
     148        public void setFileretention(String fileretention) {
     149                this.fileretention = fileretention;
     150        }
     151
     152        /**
     153         * @return
     154         * @uml.property  name="fileretention"
     155         */
     156        public String getFileretention() {
     157                return fileretention;
     158        }
     159
     160        /**
     161         * @param jobretention
     162         * @uml.property  name="jobretention"
     163         */
     164        public void setJobretention(String jobretention) {
     165                this.jobretention = jobretention;
     166        }
     167
     168        /**
     169         * @return
     170         * @uml.property  name="jobretention"
     171         */
     172        public String getJobretention() {
     173                return jobretention;
     174        }
     175
     176        /**
     177         * @param autoprune
     178         * @uml.property  name="autoprune"
     179         */
     180        public void setAutoprune(String autoprune) {
     181                this.autoprune = autoprune;
     182        }
     183
     184        /**
     185         * @return
     186         * @uml.property  name="autoprune"
     187         */
     188        public String getAutoprune() {
     189                return autoprune;
     190        }
     191
     192        /**
     193         * @param maximumconcurrentjobs
     194         * @uml.property  name="maximumconcurrentjobs"
     195         */
     196        public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
     197                this.maximumconcurrentjobs = maximumconcurrentjobs;
     198        }
     199
     200        /**
     201         * @return
     202         * @uml.property  name="maximumconcurrentjobs"
     203         */
     204        public String getMaximumconcurrentjobs() {
     205                return maximumconcurrentjobs;
     206        }
     207
    97208}
Note: See TracChangeset for help on using the changeset viewer.