Project

General

Profile

Download (907 Bytes) Statistics
| Branch: | Tag: | Revision:
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
 *
14
 * @author a.kohlbecker
15
 * @author  m.doering
16
 * @version 1.0
17
 * @created 11.12.2007 12:11:19
18
 *
19
 */
20
public class TaggedText {
21
	
22
	private String text;
23
	private TagEnum type;
24
	
25
	public String getText() {
26
		return text;
27
	}
28
	public void setText(String text) {
29
		this.text = text;
30
	}
31
	public TagEnum getType() {
32
		return type;
33
	}
34
	public void setType(TagEnum type) {
35
		this.type = type;
36
	}
37
	public TaggedText() {
38
		super();
39
	}
40
	public TaggedText(String text) {
41
		super();
42
		this.text = text;
43
	}
44
	public TaggedText(TagEnum type, String text) {
45
		super();
46
		this.text = text;
47
		this.type = type;
48
	}
49
	
50
}
(38-38/44)