Ignore:
Timestamp:
Apr 20, 2010, 5:21:42 PM (14 years ago)
Author:
tobias
Message:

comments added
all methods of the wsdl file implemented

File:
1 edited

Legend:

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

    r858 r865  
    11package de.dass_it.vanhelsing.gui.items;
    22public class ConfigItem extends ItemType implements UserObjectItem{
    3         /**
    4          * @uml.property  name="id"
    5          */
    63        private int id;
    7         /**
    8          * @uml.property  name="ressource"
    9          */
    104        private String ressource;
    11         /**
    12          * @uml.property  name="key"
    13          */
    145        private String key;
    15         /**
    16          * @uml.property  name="value"
    17          */
    186        private String value;
    197       
     
    2816        }
    2917
    30         /**
    31          * @param value
    32          * @uml.property  name="value"
    33          */
    3418        public void setValue(String value) {
    3519                this.value = value;
    3620        }
    3721
    38         /**
    39          * @return
    40          * @uml.property  name="value"
    41          */
    4222        public String getValue() {
    4323                return value;
    4424        }
    4525
    46         /**
    47          * @param key
    48          * @uml.property  name="key"
    49          */
    5026        public void setKey(String key) {
    5127                this.key = key;
    5228        }
    5329
    54         /**
    55          * @return
    56          * @uml.property  name="key"
    57          */
    5830        public String getKey() {
    5931                return key;
    6032        }
    6133
    62         /**
    63          * @param ressource
    64          * @uml.property  name="ressource"
    65          */
    6634        public void setRessource(String ressource) {
    6735                this.ressource = ressource;
    6836        }
    6937
    70         /**
    71          * @return
    72          * @uml.property  name="ressource"
    73          */
    7438        public String getRessource() {
    7539                return ressource;
     
    8044        }
    8145
    82         /**
    83          * @param id
    84          * @uml.property  name="id"
    85          */
    8646        public void setId(int id) {
    8747                this.id = id;
    8848        }
    8949
    90         /**
    91          * @return
    92          * @uml.property  name="id"
    93          */
    9450        public int getId() {
    9551                return id;
Note: See TracChangeset for help on using the changeset viewer.