source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/FDDirectorItem.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: 1.1 KB
Line 
1package de.dass_it.vanhelsing.gui.items;
2public class FDDirectorItem extends ItemType implements UserObjectItem{
3 /**
4 * @uml.property name="name"
5 */
6 private String name;
7 /**
8 * @uml.property name="password"
9 */
10 private String password;
11 /**
12 * @uml.property name="monitor"
13 */
14 private String monitor;
15
16 public FDDirectorItem(){}
17
18 public FDDirectorItem(String name, String password){
19 setName(name);
20 setPassword(password);
21 }
22
23 /**
24 * @return
25 * @uml.property name="name"
26 */
27 public String getName() {
28 return name;
29 }
30 /**
31 * @param name
32 * @uml.property name="name"
33 */
34 public void setName(String name) {
35 this.name = name;
36 }
37 /**
38 * @return
39 * @uml.property name="password"
40 */
41 public String getPassword() {
42 return password;
43 }
44 /**
45 * @param password
46 * @uml.property name="password"
47 */
48 public void setPassword(String password) {
49 this.password = password;
50 }
51 /**
52 * @return
53 * @uml.property name="monitor"
54 */
55 public String getMonitor() {
56 return monitor;
57 }
58 /**
59 * @param monitor
60 * @uml.property name="monitor"
61 */
62 public void setMonitor(String monitor) {
63 this.monitor = monitor;
64 }
65
66}
Note: See TracBrowser for help on using the repository browser.