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

    r858 r865  
    11package de.dass_it.vanhelsing.gui.items;
    22public class CounterItem extends ItemType implements UserObjectItem{
    3         /**
    4          * @uml.property  name="name"
    5          */
    63        private String name;
    7         /**
    8          * @uml.property  name="minimum"
    9          */
    104        private String minimum;
    11         /**
    12          * @uml.property  name="maximum"
    13          */
    145        private String maximum;
    15         /**
    16          * @uml.property  name="wrapcounter"
    17          */
    186        private String wrapcounter;
    19         /**
    20          * @uml.property  name="catalog"
    21          */
    227        private String catalog;
    238
     
    2712        }
    2813       
    29         /**
    30          * @return
    31          * @uml.property  name="name"
    32          */
    3314        public String getName() {
    3415                return name;
    3516        }
    36         /**
    37          * @param name
    38          * @uml.property  name="name"
    39          */
    4017        public void setName(String name) {
    4118                this.name = name;
    4219        }
    43         /**
    44          * @return
    45          * @uml.property  name="minimum"
    46          */
    4720        public String getMinimum() {
    4821                return minimum;
    4922        }
    50         /**
    51          * @param minimum
    52          * @uml.property  name="minimum"
    53          */
    5423        public void setMinimum(String minimum) {
    5524                this.minimum = minimum;
    5625        }
    57         /**
    58          * @return
    59          * @uml.property  name="maximum"
    60          */
    6126        public String getMaximum() {
    6227                return maximum;
    6328        }
    64         /**
    65          * @param maximum
    66          * @uml.property  name="maximum"
    67          */
    6829        public void setMaximum(String maximum) {
    6930                this.maximum = maximum;
    7031        }
    71         /**
    72          * @return
    73          * @uml.property  name="wrapcounter"
    74          */
    7532        public String getWrapcounter() {
    7633                return wrapcounter;
    7734        }
    78         /**
    79          * @param wrapcounter
    80          * @uml.property  name="wrapcounter"
    81          */
    8235        public void setWrapcounter(String wrapcounter) {
    8336                this.wrapcounter = wrapcounter;
    8437        }
    85         /**
    86          * @return
    87          * @uml.property  name="catalog"
    88          */
    8938        public String getCatalog() {
    9039                return catalog;
    9140        }
    92         /**
    93          * @param catalog
    94          * @uml.property  name="catalog"
    95          */
    9641        public void setCatalog(String catalog) {
    9742                this.catalog = catalog;
Note: See TracChangeset for help on using the changeset viewer.