Project

General

Profile

Download (905 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2009 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.polytomouskey;
10

    
11
import eu.etaxonomy.cdm.model.name.TaxonName;
12

    
13
/**
14
 * @author l.morris
15
 * @date Feb 22, 2013
16
 *
17
 */
18
public class TaxonLinkDto extends AbstractLinkDto {
19

    
20
	private TaxonName taxonName = null;
21

    
22

    
23
	/**
24
	 * @param taxonName
25
	 */
26
	public TaxonLinkDto(TaxonName taxonName) {
27
		super();
28
		this.taxonName = taxonName;
29
	}
30

    
31
	/**
32
	 * @return the taxonName
33
	 */
34
	public TaxonName getTaxonName() {
35
		return taxonName;
36
	}
37

    
38
	/**
39
	 * @param taxonName the taxonName to set
40
	 */
41
	public void setTaxonName(TaxonName taxonName) {
42
		this.taxonName = taxonName;
43
	}
44

    
45

    
46
}
(4-4/4)