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