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

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class ConfigItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="id"
     5         */
    36        private int id;
     7        /**
     8         * @uml.property  name="ressource"
     9         */
    410        private String ressource;
     11        /**
     12         * @uml.property  name="key"
     13         */
    514        private String key;
     15        /**
     16         * @uml.property  name="value"
     17         */
    618        private String value;
    719       
     
    1628        }
    1729
     30        /**
     31         * @param value
     32         * @uml.property  name="value"
     33         */
    1834        public void setValue(String value) {
    1935                this.value = value;
    2036        }
    2137
     38        /**
     39         * @return
     40         * @uml.property  name="value"
     41         */
    2242        public String getValue() {
    2343                return value;
    2444        }
    2545
     46        /**
     47         * @param key
     48         * @uml.property  name="key"
     49         */
    2650        public void setKey(String key) {
    2751                this.key = key;
    2852        }
    2953
     54        /**
     55         * @return
     56         * @uml.property  name="key"
     57         */
    3058        public String getKey() {
    3159                return key;
    3260        }
    3361
     62        /**
     63         * @param ressource
     64         * @uml.property  name="ressource"
     65         */
    3466        public void setRessource(String ressource) {
    3567                this.ressource = ressource;
    3668        }
    3769
     70        /**
     71         * @return
     72         * @uml.property  name="ressource"
     73         */
    3874        public String getRessource() {
    3975                return ressource;
     
    4480        }
    4581
     82        /**
     83         * @param id
     84         * @uml.property  name="id"
     85         */
    4686        public void setId(int id) {
    4787                this.id = id;
    4888        }
    4989
     90        /**
     91         * @return
     92         * @uml.property  name="id"
     93         */
    5094        public int getId() {
    5195                return id;
Note: See TracChangeset for help on using the changeset viewer.