Project

General

Profile

Download (807 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
package eu.etaxonomy.cdm.remote.dto;
10

    
11
import eu.etaxonomy.cdm.model.taxon.Taxon;
12

    
13
/**
14
 * 
15
 * @author a.kohlbecker
16
 * @version 1.0
17
 * @created 05.02.2008 15:00:00
18
 *
19
 */
20
public class TaxonRelationshipTO{
21
	
22
	private LocalisedTermSTO type;
23
	private TaxonSTO taxon;
24
	
25
	public LocalisedTermSTO getType() {
26
		return type;
27
	}
28
	public void setType(LocalisedTermSTO type) {
29
		this.type = type;
30
	}
31
	public TaxonSTO getTaxon() {
32
		return taxon;
33
	}
34
	public void setTaxon(TaxonSTO taxon) {
35
		this.taxon = taxon;
36
	}
37

    
38
}
(39-39/44)