Project

General

Profile

Download (785 Bytes) 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.vaadin.jscomponent;
10

    
11
import com.vaadin.shared.ui.JavaScriptComponentState;
12

    
13
/**
14
 * @author cmathew
15
 * @since 8 Apr 2015
16
 *
17
 */
18
public class D3ConceptRelationshipTreeState extends JavaScriptComponentState {
19

    
20
    private String conceptRelationshipTree;
21

    
22

    
23
    public String getConceptRelationshipTree() {
24
        return conceptRelationshipTree;
25
    }
26

    
27
    public void setConceptRelationshipTree(String conceptRelationshipTree) {
28
        this.conceptRelationshipTree = conceptRelationshipTree;
29
    }
30
}
(2-2/2)