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