Project

General

Profile

Download (1017 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 org.vaadin.viritin.fields.LazyComboBox;
12

    
13
import com.vaadin.ui.Button;
14
import com.vaadin.ui.Label;
15

    
16
import eu.etaxonomy.cdm.model.reference.Reference;
17
import eu.etaxonomy.cdm.ref.TypedEntityReference;
18
import eu.etaxonomy.vaadin.mvp.ApplicationView;
19

    
20
/**
21
 * @author a.kohlbecker
22
 * @since Mar 2, 2017
23
 *
24
 */
25
public interface StartRegistrationView extends ApplicationView<StartRegistrationPresenter>  {
26

    
27
    Button getNewPublicationButton();
28

    
29
    LazyComboBox<TypedEntityReference<Reference>> getReferenceCombobox();
30

    
31
    /**
32
     * @return
33
     */
34
    Button getRemoveNewPublicationButton();
35

    
36
    /**
37
     * @return
38
     */
39
    Button getContinueButton();
40

    
41
    Label getNewPublicationLabel();
42

    
43

    
44

    
45
}
(14-14/18)