Project

General

Profile

Download (967 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
 * 
17
 * Interface for the distribution status editor view.
18
 * 
19
 * @author freimeier
20
 * @since 18.10.2017
21
 *
22
 */
23
public interface IDistributionTableView extends ApplicationView<DistributionTablePresenter>, View {
24

    
25
    /**
26
     * Updates Distribution Table.
27
     */
28
	public void update();
29

    
30
	/**
31
	 * Opens the status setting window to change available distribution status.
32
	 */
33
	public void openStatusSettings();
34

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

    
40
}
(3-3/4)