Project

General

Profile

Download (672 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 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.taxeditor.workbench.part;
10

    
11
/**
12
 * Implementing classes should provide a tree viewer (or something alike)
13
 * which can be collapsed and expanded)
14
 * @author pplitzner
15
 * @since Oct 30, 2017
16
 *
17
 */
18
public interface ICollapsableExpandable {
19

    
20
    /**
21
     * Collapse all tree items
22
     */
23
    public void collapse();
24

    
25
    /**
26
     * Expand all tree items
27
     */
28
    public void expand();
29

    
30
}
(1-1/4)