improved taxonomic tree and taxon search + some more
[cdmlib.git] / cdmlib-remote / src / main / java / eu / etaxonomy / cdm / remote / dto / IdentifiedString.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.cdm.remote.dto;
11
12 /**
13 * A String globally uniquely identified by an uuid.
14 *
15 * @author a.kohlbecker
16 * @version 1.0
17 * @created 11.12.2007 14:13:29
18 *
19 */
20 public class IdentifiedString extends BaseSTO{
21
22 private String value;
23
24 public IdentifiedString() {
25 super();
26 }
27 public IdentifiedString(String value, String uuid) {
28 super(uuid);
29 this.value = value;
30 }
31 public String getText() {
32 return value;
33 }
34 public void setText(String text) {
35 this.value = text;
36 }
37
38
39 }