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

Last change on this file since 832 was 832, checked in by tobias, on Mar 5, 2010 at 6:03:21 PM

views and data objects of the resource types added.
basic logging with log4j for the beanUtil class.
Configuration and JobSchedule class renamed.

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