Project

General

Profile

Download (905 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.cdm.vaadin.view.distributionStatus;
10

    
11
import com.vaadin.navigator.View;
12

    
13
import eu.etaxonomy.vaadin.mvp.ApplicationView;
14

    
15
/**
16
 * @author freimeier
17
 * @since 18.10.2017
18
 *
19
 */
20
public interface IDistributionTableView extends ApplicationView<DistributionTablePresenter>, View {
21

    
22
    /**
23
     * Updates Distribution Table.
24
     */
25
	public void update();
26

    
27
	/**
28
	 * Opens the status setting window to change available distribution status.
29
	 */
30
	public void openStatusSettings();
31

    
32
	/**
33
	 * Opens the area and taxon setting window to change available areas and chose classification.
34
	 */
35
	public void openAreaAndTaxonSettings();
36

    
37
}
(5-5/7)