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

    r848 r858  
    22
    33public class DirectorItem extends ItemType implements UserObjectItem{
    4          private String name;
    5          private String description;
    6          private String password;
    7          private String messages;
    8          private String workingDirectory;
    9          private String pidDirectory;
    10          private String scriptsDirectory;
    11          private String queryFile;
    12          private String heartbeatInterval;
    13          private String maximumConcurrentJobs;
    14          private String fdConnectTimeout;
    15          private String sdConnectTimeout;
    16          private String dirAddresses;
    17          private String dirPort;
    18          private String dirAddress;
    19          private String dirSourceAddress;
    20          private String statisticsRetention;
    21          private String verId;
    22          private String maxConsoleConnections;
     4         /**
     5         * @uml.property  name="name"
     6         */
     7        private String name;
     8         /**
     9         * @uml.property  name="description"
     10         */
     11        private String description;
     12         /**
     13         * @uml.property  name="password"
     14         */
     15        private String password;
     16         /**
     17         * @uml.property  name="messages"
     18         */
     19        private String messages;
     20         /**
     21         * @uml.property  name="workingdirectory"
     22         */
     23        private String workingdirectory;
     24         /**
     25         * @uml.property  name="piddirectory"
     26         */
     27        private String piddirectory;
     28         /**
     29         * @uml.property  name="scriptsdirectory"
     30         */
     31        private String scriptsdirectory;
     32         /**
     33         * @uml.property  name="queryfile"
     34         */
     35        private String queryfile;
     36         /**
     37         * @uml.property  name="heartbeatinterval"
     38         */
     39        private String heartbeatinterval;
     40         /**
     41         * @uml.property  name="maximumconcurrentjobs"
     42         */
     43        private String maximumconcurrentjobs;
     44         /**
     45         * @uml.property  name="fdconnecttimeout"
     46         */
     47        private String fdconnecttimeout;
     48         /**
     49         * @uml.property  name="sdconnecttimeout"
     50         */
     51        private String sdconnecttimeout;
     52         /**
     53         * @uml.property  name="diraddresses"
     54         */
     55        private String diraddresses;
     56         /**
     57         * @uml.property  name="dirport"
     58         */
     59        private String dirport;
     60         /**
     61         * @uml.property  name="diraddress"
     62         */
     63        private String diraddress;
     64         /**
     65         * @uml.property  name="dirsourceaddress"
     66         */
     67        private String dirsourceaddress;
     68         /**
     69         * @uml.property  name="statisticsretention"
     70         */
     71        private String statisticsretention;
     72         /**
     73         * @uml.property  name="verid"
     74         */
     75        private String verid;
     76         /**
     77         * @uml.property  name="maxconsoleconnections"
     78         */
     79        private String maxconsoleconnections;
    2380
    2481         public DirectorItem(){}
    2582
    26          public DirectorItem(String name, String password, String messages, String workingDirectory,
    27                          String pidDrectory, String queryFile){
     83         public DirectorItem(String name, String password, String messages, String workingdirectory,
     84                         String piddrectory, String queryfile){
    2885               
    2986         }
    3087
     88        /**
     89         * @return
     90         * @uml.property  name="name"
     91         */
     92        public String getName() {
     93                return name;
     94        }
     95
     96        /**
     97         * @param name
     98         * @uml.property  name="name"
     99         */
    31100        public void setName(String name) {
    32101                this.name = name;
    33102        }
    34103
    35         public String getName() {
    36                 return name;
    37         }
     104        /**
     105         * @return
     106         * @uml.property  name="description"
     107         */
    38108        public String getDescription() {
    39                         return description;
    40                 }
    41 
     109                return description;
     110        }
     111
     112        /**
     113         * @param description
     114         * @uml.property  name="description"
     115         */
    42116        public void setDescription(String description) {
    43                         this.description = description;
    44         }
    45 
    46                 public String getPassword() {
    47                         return password;
    48                 }
    49 
    50                 public void setPassword(String password) {
    51                         this.password = password;
    52                 }
    53 
    54                 public String getMessages() {
    55                         return messages;
    56                 }
    57 
    58                 public void setMessages(String messages) {
    59                         this.messages = messages;
    60                 }
    61 
    62                 public String getWorkingDirectory() {
    63                         return workingDirectory;
    64                 }
    65 
    66                 public void setWorkingDirectory(String workingDirectory) {
    67                         this.workingDirectory = workingDirectory;
    68                 }
    69 
    70                 public String getPidDirectory() {
    71                         return pidDirectory;
    72                 }
    73 
    74                 public void setPidDirectory(String pidDirectory) {
    75                         this.pidDirectory = pidDirectory;
    76                 }
    77 
    78                 public String getScriptsDirectory() {
    79                         return scriptsDirectory;
    80                 }
    81 
    82                 public void setScriptsDirectory(String scriptsDirectory) {
    83                         this.scriptsDirectory = scriptsDirectory;
    84                 }
    85 
    86                 public String getQueryFile() {
    87                         return queryFile;
    88                 }
    89 
    90                 public void setQueryFile(String queryFile) {
    91                         this.queryFile = queryFile;
    92                 }
    93 
    94                 public String getHeartbeatInterval() {
    95                         return heartbeatInterval;
    96                 }
    97 
    98                 public void setHeartbeatInterval(String heartbeatInterval) {
    99                         this.heartbeatInterval = heartbeatInterval;
    100                 }
    101 
    102                 public String getMaximumConcurrentJobs() {
    103                         return maximumConcurrentJobs;
    104                 }
    105 
    106                 public void setMaximumConcurrentJobs(String maximumConcurrentJobs) {
    107                         this.maximumConcurrentJobs = maximumConcurrentJobs;
    108                 }
    109 
    110                 public String getFdConnectTimeout() {
    111                         return fdConnectTimeout;
    112                 }
    113 
    114                 public void setFdConnectTimeout(String fdConnectTimeout) {
    115                         this.fdConnectTimeout = fdConnectTimeout;
    116                 }
    117 
    118                 public String getSdConnectTimeout() {
    119                         return sdConnectTimeout;
    120                 }
    121 
    122                 public void setSdConnectTimeout(String sdConnectTimeout) {
    123                         this.sdConnectTimeout = sdConnectTimeout;
    124                 }
    125 
    126                 public String getDirAddresses() {
    127                         return dirAddresses;
    128                 }
    129 
    130                 public void setDirAddresses(String dirAddresses) {
    131                         this.dirAddresses = dirAddresses;
    132                 }
    133 
    134                 public String getDirPort() {
    135                         return dirPort;
    136                 }
    137 
    138                 public void setDirPort(String dirPort) {
    139                         this.dirPort = dirPort;
    140                 }
    141 
    142                 public String getDirAddress() {
    143                         return dirAddress;
    144                 }
    145 
    146                 public void setDirAddress(String dirAddress) {
    147                         this.dirAddress = dirAddress;
    148                 }
    149 
    150                 public String getDirSourceAddress() {
    151                         return dirSourceAddress;
    152                 }
    153 
    154                 public void setDirSourceAddress(String dirSourceAddress) {
    155                         this.dirSourceAddress = dirSourceAddress;
    156                 }
    157 
    158                 public String getStatisticsRetention() {
    159                         return statisticsRetention;
    160                 }
    161 
    162                 public void setStatisticsRetention(String statisticsRetention) {
    163                         this.statisticsRetention = statisticsRetention;
    164                 }
    165 
    166                 public String getVerId() {
    167                         return verId;
    168                 }
    169 
    170                 public void setVerId(String verId) {
    171                         this.verId = verId;
    172                 }
    173 
    174                 public String getMaxConsoleConnections() {
    175                         return maxConsoleConnections;
    176                 }
    177 
    178                 public void setMaxConsoleConnections(String maxConsoleConnections) {
    179                         this.maxConsoleConnections = maxConsoleConnections;
    180                 }
     117                this.description = description;
     118        }
     119
     120        /**
     121         * @return
     122         * @uml.property  name="password"
     123         */
     124        public String getPassword() {
     125                return password;
     126        }
     127
     128        /**
     129         * @param password
     130         * @uml.property  name="password"
     131         */
     132        public void setPassword(String password) {
     133                this.password = password;
     134        }
     135
     136        /**
     137         * @return
     138         * @uml.property  name="messages"
     139         */
     140        public String getMessages() {
     141                return messages;
     142        }
     143
     144        /**
     145         * @param messages
     146         * @uml.property  name="messages"
     147         */
     148        public void setMessages(String messages) {
     149                this.messages = messages;
     150        }
     151
     152        /**
     153         * @return
     154         * @uml.property  name="workingdirectory"
     155         */
     156        public String getWorkingdirectory() {
     157                return workingdirectory;
     158        }
     159
     160        /**
     161         * @param workingdirectory
     162         * @uml.property  name="workingdirectory"
     163         */
     164        public void setWorkingdirectory(String workingdirectory) {
     165                this.workingdirectory = workingdirectory;
     166        }
     167
     168        /**
     169         * @return
     170         * @uml.property  name="piddirectory"
     171         */
     172        public String getPiddirectory() {
     173                return piddirectory;
     174        }
     175
     176        /**
     177         * @param piddirectory
     178         * @uml.property  name="piddirectory"
     179         */
     180        public void setPiddirectory(String piddirectory) {
     181                this.piddirectory = piddirectory;
     182        }
     183
     184        /**
     185         * @return
     186         * @uml.property  name="scriptsdirectory"
     187         */
     188        public String getScriptsdirectory() {
     189                return scriptsdirectory;
     190        }
     191
     192        /**
     193         * @param scriptsdirectory
     194         * @uml.property  name="scriptsdirectory"
     195         */
     196        public void setScriptsdirectory(String scriptsdirectory) {
     197                this.scriptsdirectory = scriptsdirectory;
     198        }
     199
     200        /**
     201         * @return
     202         * @uml.property  name="queryfile"
     203         */
     204        public String getQueryfile() {
     205                return queryfile;
     206        }
     207
     208        /**
     209         * @param queryfile
     210         * @uml.property  name="queryfile"
     211         */
     212        public void setQueryfile(String queryfile) {
     213                this.queryfile = queryfile;
     214        }
     215
     216        /**
     217         * @return
     218         * @uml.property  name="heartbeatinterval"
     219         */
     220        public String getHeartbeatinterval() {
     221                return heartbeatinterval;
     222        }
     223
     224        /**
     225         * @param heartbeatinterval
     226         * @uml.property  name="heartbeatinterval"
     227         */
     228        public void setHeartbeatinterval(String heartbeatinterval) {
     229                this.heartbeatinterval = heartbeatinterval;
     230        }
     231
     232        /**
     233         * @return
     234         * @uml.property  name="maximumconcurrentjobs"
     235         */
     236        public String getMaximumconcurrentjobs() {
     237                return maximumconcurrentjobs;
     238        }
     239
     240        /**
     241         * @param maximumconcurrentjobs
     242         * @uml.property  name="maximumconcurrentjobs"
     243         */
     244        public void setMaximumconcurrentjobs(String maximumconcurrentjobs) {
     245                this.maximumconcurrentjobs = maximumconcurrentjobs;
     246        }
     247
     248        /**
     249         * @return
     250         * @uml.property  name="fdconnecttimeout"
     251         */
     252        public String getFdconnecttimeout() {
     253                return fdconnecttimeout;
     254        }
     255
     256        /**
     257         * @param fdconnecttimeout
     258         * @uml.property  name="fdconnecttimeout"
     259         */
     260        public void setFdconnecttimeout(String fdconnecttimeout) {
     261                this.fdconnecttimeout = fdconnecttimeout;
     262        }
     263
     264        /**
     265         * @return
     266         * @uml.property  name="sdconnecttimeout"
     267         */
     268        public String getSdconnecttimeout() {
     269                return sdconnecttimeout;
     270        }
     271
     272        /**
     273         * @param sdconnecttimeout
     274         * @uml.property  name="sdconnecttimeout"
     275         */
     276        public void setSdconnecttimeout(String sdconnecttimeout) {
     277                this.sdconnecttimeout = sdconnecttimeout;
     278        }
     279
     280        /**
     281         * @return
     282         * @uml.property  name="diraddresses"
     283         */
     284        public String getDiraddresses() {
     285                return diraddresses;
     286        }
     287
     288        /**
     289         * @param diraddresses
     290         * @uml.property  name="diraddresses"
     291         */
     292        public void setDiraddresses(String diraddresses) {
     293                this.diraddresses = diraddresses;
     294        }
     295
     296        /**
     297         * @return
     298         * @uml.property  name="dirport"
     299         */
     300        public String getDirport() {
     301                return dirport;
     302        }
     303
     304        /**
     305         * @param dirport
     306         * @uml.property  name="dirport"
     307         */
     308        public void setDirport(String dirport) {
     309                this.dirport = dirport;
     310        }
     311
     312        /**
     313         * @return
     314         * @uml.property  name="diraddress"
     315         */
     316        public String getDiraddress() {
     317                return diraddress;
     318        }
     319
     320        /**
     321         * @param diraddress
     322         * @uml.property  name="diraddress"
     323         */
     324        public void setDiraddress(String diraddress) {
     325                this.diraddress = diraddress;
     326        }
     327
     328        /**
     329         * @return
     330         * @uml.property  name="dirsourceaddress"
     331         */
     332        public String getDirsourceaddress() {
     333                return dirsourceaddress;
     334        }
     335
     336        /**
     337         * @param dirsourceaddress
     338         * @uml.property  name="dirsourceaddress"
     339         */
     340        public void setDirsourceaddress(String dirsourceaddress) {
     341                this.dirsourceaddress = dirsourceaddress;
     342        }
     343
     344        /**
     345         * @return
     346         * @uml.property  name="statisticsretention"
     347         */
     348        public String getStatisticsretention() {
     349                return statisticsretention;
     350        }
     351
     352        /**
     353         * @param statisticsretention
     354         * @uml.property  name="statisticsretention"
     355         */
     356        public void setStatisticsretention(String statisticsretention) {
     357                this.statisticsretention = statisticsretention;
     358        }
     359
     360        /**
     361         * @return
     362         * @uml.property  name="verid"
     363         */
     364        public String getVerid() {
     365                return verid;
     366        }
     367
     368        /**
     369         * @param verid
     370         * @uml.property  name="verid"
     371         */
     372        public void setVerid(String verid) {
     373                this.verid = verid;
     374        }
     375
     376        /**
     377         * @return
     378         * @uml.property  name="maxconsoleconnections"
     379         */
     380        public String getMaxconsoleconnections() {
     381                return maxconsoleconnections;
     382        }
     383
     384        /**
     385         * @param maxconsoleconnections
     386         * @uml.property  name="maxconsoleconnections"
     387         */
     388        public void setMaxconsoleconnections(String maxconsoleconnections) {
     389                this.maxconsoleconnections = maxconsoleconnections;
     390        }
     391
    181392
    182393
Note: See TracChangeset for help on using the changeset viewer.