Project

General

Profile

Download (1.05 KB) 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 java.util.UUID;
12

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

    
16
import eu.etaxonomy.cdm.vaadin.presenter.registration.RegistrationType;
17
import eu.etaxonomy.vaadin.mvp.ApplicationView;
18

    
19
/**
20
 * @author a.kohlbecker
21
 * @since Mar 3, 2017
22
 *
23
 */
24
public interface RegistrationWorkflowView extends ApplicationView{
25

    
26

    
27
    CssLayout getWorkflow();
28

    
29
    Label getTitle();
30

    
31

    
32
    /**
33
     * Open a popup editor for an existing TaxonName if the nameUuid is
34
     * given otherwise a blank editor will open if the  nameUuid is null.
35
     *
36
     * @param nameUuid can be null
37
     * @deprecated will be handled by the WorkflowItem
38
     */
39
    @Deprecated
40
    void openNameEditor(UUID nameUuid);
41

    
42
    public void makeWorflow(RegistrationType type);
43

    
44
}
(5-5/9)