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

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class FDDirectorItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="name"
     5         */
    36        private String name;
     7        /**
     8         * @uml.property  name="password"
     9         */
    410        private String password;
     11        /**
     12         * @uml.property  name="monitor"
     13         */
    514        private String monitor;
    615
     
    1221        }
    1322       
     23        /**
     24         * @return
     25         * @uml.property  name="name"
     26         */
    1427        public String getName() {
    1528                return name;
    1629        }
     30        /**
     31         * @param name
     32         * @uml.property  name="name"
     33         */
    1734        public void setName(String name) {
    1835                this.name = name;
    1936        }
     37        /**
     38         * @return
     39         * @uml.property  name="password"
     40         */
    2041        public String getPassword() {
    2142                return password;
    2243        }
     44        /**
     45         * @param password
     46         * @uml.property  name="password"
     47         */
    2348        public void setPassword(String password) {
    2449                this.password = password;
    2550        }
     51        /**
     52         * @return
     53         * @uml.property  name="monitor"
     54         */
    2655        public String getMonitor() {
    2756                return monitor;
    2857        }
     58        /**
     59         * @param monitor
     60         * @uml.property  name="monitor"
     61         */
    2962        public void setMonitor(String monitor) {
    3063                this.monitor = monitor;
Note: See TracChangeset for help on using the changeset viewer.