Project

General

Profile

Download (942 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.registration;
10

    
11
import com.vaadin.ui.DateField;
12
import com.vaadin.ui.NativeSelect;
13

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

    
16
/**
17
 * @author a.kohlbecker
18
 * @since May 15, 2017
19
 *
20
 */
21
public interface RegistrationPopEditorView extends ApplicationView<RegistrationEditorPresenter> {
22

    
23

    
24
    /**
25
     * @return the submitterField
26
     */
27
    public NativeSelect getSubmitterField();
28

    
29
    /**
30
     * @return the institutionField
31
     */
32
    public NativeSelect getInstitutionField();
33

    
34
    /**
35
     * @return
36
     */
37
    public NativeSelect getStatusSelect();
38

    
39
    /**
40
     * @return
41
     */
42
    public DateField getRegistrationDateField();
43
}
(7-7/18)