source: vanHelsing/trunk/gui/src/de/dass_it/vanhelsing/gui/items/TreeItem.java

Last change on this file was 865, checked in by tobias, on Apr 20, 2010 at 5:21:42 PM

comments added
all methods of the wsdl file implemented

File size: 361 bytes
Line 
1package de.dass_it.vanhelsing.gui.items;
2/**
3 *
4 * @author tgoecke
5 *
6 */
7public class TreeItem extends ItemType implements UserObjectItem{
8
9 private String value;
10
11 public TreeItem(){}
12
13 public TreeItem(String value) {
14 setValue(value);
15 }
16
17 public void setValue(String value) {
18 this.value = value;
19 }
20
21 public String getValue() {
22 return value;
23 }
24
25}
Note: See TracBrowser for help on using the repository browser.