Project

General

Profile

Download (852 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.component.taxon;
10

    
11
import org.json.JSONException;
12

    
13
import eu.etaxonomy.cdm.vaadin.container.IdUuidName;
14
import eu.etaxonomy.cdm.vaadin.jscomponent.D3ConceptRelationshipTree.Direction;
15

    
16
/**
17
 * @author cmathew
18
 * @date 9 Apr 2015
19
 *
20
 */
21
public interface IConceptRelationshipComponentListener {
22

    
23
    /**
24
     * @param taxonIun
25
     * @param direction
26
     * @throws JSONException
27
     */
28
    public void refreshRelationshipView(IdUuidName taxonIun, Direction direction) throws JSONException;
29

    
30
    /**
31
     *
32
     */
33
    public void clearRelationshipView();
34

    
35

    
36

    
37
}
(5-5/12)