source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/ScheduleItem.java@ 858

Last change on this file since 858 was 858, checked in by tobias, on Apr 9, 2010 at 10:56:07 AM

visual design slightly modified. tree functions extended

File size: 774 bytes
RevLine 
[832]1package de.dass_it.vanhelsing.gui.items;
[844]2public class ScheduleItem extends ItemType implements UserObjectItem{
[832]3
[858]4 /**
5 * @uml.property name="name"
6 */
[832]7 private String name;
[858]8 /**
9 * @uml.property name="run"
10 */
[832]11 private String run;
12
13 public ScheduleItem(){}
14
15 public ScheduleItem(String name, String run){
16 setName(name);
17 setRun(run);
18 }
[858]19 /**
20 * @return
21 * @uml.property name="name"
22 */
[832]23 public String getName() {
24 return name;
25 }
26
[858]27 /**
28 * @param name
29 * @uml.property name="name"
30 */
[832]31 public void setName(String name) {
32 this.name = name;
33 }
34
[858]35 /**
36 * @return
37 * @uml.property name="run"
38 */
[832]39 public String getRun() {
40 return run;
41 }
42
[858]43 /**
44 * @param run
45 * @uml.property name="run"
46 */
[832]47 public void setRun(String run) {
48 this.run = run;
49 }
50
51
52}
Note: See TracBrowser for help on using the repository browser.