source:
vanHelsing/branches/guitechdemo/src/de/dass_it/vanhelsing/gui/items/TreeItem.java
| Last change on this file was 844, checked in by , on Mar 18, 2010 at 6:52:29 PM | |
|---|---|
| File size: 328 bytes | |
| Line | |
|---|---|
| 1 | package de.dass_it.vanhelsing.gui.items; |
| 2 | |
| 3 | public class TreeItem extends ItemType implements UserObjectItem{ |
| 4 | |
| 5 | private String value; |
| 6 | |
| 7 | public TreeItem(){} |
| 8 | |
| 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.
