Project

General

Profile

Download (943 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.phycobank;
10

    
11
import java.util.UUID;
12

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

    
16
import eu.etaxonomy.vaadin.mvp.ApplicationView;
17

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

    
25

    
26
    CssLayout getWorkflow();
27

    
28
    Label getTitle();
29

    
30

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

    
41
}
(4-4/8)