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

    r844 r858  
    11package de.dass_it.vanhelsing.gui.items;
    22public class CounterItem extends ItemType implements UserObjectItem{
     3        /**
     4         * @uml.property  name="name"
     5         */
    36        private String name;
     7        /**
     8         * @uml.property  name="minimum"
     9         */
    410        private String minimum;
     11        /**
     12         * @uml.property  name="maximum"
     13         */
    514        private String maximum;
    6         private String wrapCounter;
     15        /**
     16         * @uml.property  name="wrapcounter"
     17         */
     18        private String wrapcounter;
     19        /**
     20         * @uml.property  name="catalog"
     21         */
    722        private String catalog;
    823
     
    1227        }
    1328       
     29        /**
     30         * @return
     31         * @uml.property  name="name"
     32         */
    1433        public String getName() {
    1534                return name;
    1635        }
     36        /**
     37         * @param name
     38         * @uml.property  name="name"
     39         */
    1740        public void setName(String name) {
    1841                this.name = name;
    1942        }
     43        /**
     44         * @return
     45         * @uml.property  name="minimum"
     46         */
    2047        public String getMinimum() {
    2148                return minimum;
    2249        }
     50        /**
     51         * @param minimum
     52         * @uml.property  name="minimum"
     53         */
    2354        public void setMinimum(String minimum) {
    2455                this.minimum = minimum;
    2556        }
     57        /**
     58         * @return
     59         * @uml.property  name="maximum"
     60         */
    2661        public String getMaximum() {
    2762                return maximum;
    2863        }
     64        /**
     65         * @param maximum
     66         * @uml.property  name="maximum"
     67         */
    2968        public void setMaximum(String maximum) {
    3069                this.maximum = maximum;
    3170        }
    32         public String getWrapCounter() {
    33                 return wrapCounter;
     71        /**
     72         * @return
     73         * @uml.property  name="wrapcounter"
     74         */
     75        public String getWrapcounter() {
     76                return wrapcounter;
    3477        }
    35         public void setWrapCounter(String wrapCounter) {
    36                 this.wrapCounter = wrapCounter;
     78        /**
     79         * @param wrapcounter
     80         * @uml.property  name="wrapcounter"
     81         */
     82        public void setWrapcounter(String wrapcounter) {
     83                this.wrapcounter = wrapcounter;
    3784        }
     85        /**
     86         * @return
     87         * @uml.property  name="catalog"
     88         */
    3889        public String getCatalog() {
    3990                return catalog;
    4091        }
     92        /**
     93         * @param catalog
     94         * @uml.property  name="catalog"
     95         */
    4196        public void setCatalog(String catalog) {
    4297                this.catalog = catalog;
Note: See TracChangeset for help on using the changeset viewer.