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

    r844 r858  
    22public class ScheduleItem extends ItemType implements UserObjectItem{
    33
     4        /**
     5         * @uml.property  name="name"
     6         */
    47        private String name;
     8        /**
     9         * @uml.property  name="run"
     10         */
    511        private String run;
    612       
     
    1117                setRun(run);
    1218        }
     19        /**
     20         * @return
     21         * @uml.property  name="name"
     22         */
    1323        public String getName() {
    1424                return name;
    1525        }
    1626
     27        /**
     28         * @param name
     29         * @uml.property  name="name"
     30         */
    1731        public void setName(String name) {
    1832                this.name = name;
    1933        }
    2034
     35        /**
     36         * @return
     37         * @uml.property  name="run"
     38         */
    2139        public String getRun() {
    2240                return run;
    2341        }
    2442
     43        /**
     44         * @param run
     45         * @uml.property  name="run"
     46         */
    2547        public void setRun(String run) {
    2648                this.run = run;
Note: See TracChangeset for help on using the changeset viewer.