Project

General

Profile

Download (1.15 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2015 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.io.specimen.abcd206.in;
10

    
11
import org.w3c.dom.NodeList;
12

    
13
/**
14
 * Wrapper class which hold the list of associated units and
15
 * the parameters of the association.
16
 * @author pplitzner
17
 * @date Jun 24, 2015
18
 *
19
 */
20
public class UnitAssociationWrapper {
21

    
22
    private NodeList associatedUnits;
23
    private String associationType;
24
    private String prefix;
25

    
26
    public NodeList getAssociatedUnits() {
27
        return associatedUnits;
28
    }
29

    
30
    public void setAssociatedUnits(NodeList associatedUnits) {
31
        this.associatedUnits = associatedUnits;
32
    }
33

    
34
    public String getAssociationType() {
35
        return associationType;
36
    }
37

    
38
    public void setAssociationType(String associationType) {
39
        this.associationType = associationType;
40
    }
41

    
42
    public String getPrefix() {
43
        return prefix;
44
    }
45

    
46
    public void setPrefix(String prefix) {
47
        this.prefix = prefix;
48
    }
49

    
50
}
(14-14/14)