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

Last change on this file since 844 was 844, checked in by tobias, on Mar 18, 2010 at 6:52:29 PM

all libraries moved to WEB-INF/lib

File size: 328 bytes
RevLine 
[832]1package de.dass_it.vanhelsing.gui.items;
2
[844]3public class TreeItem extends ItemType implements UserObjectItem{
[832]4
5 private String value;
6
[844]7 public TreeItem(){}
8
[832]9 public TreeItem(String value) {
10 setValue(value);
11 }
12
13 public void setValue(String value) {
14 this.value = value;
15 }
16
17 public String getValue() {
18 return value;
19 }
20
21}
Note: See TracBrowser for help on using the repository browser.