Project

General

Profile

Download (1.34 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.event;
10

    
11
import java.util.UUID;
12

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

    
16
import eu.etaxonomy.cdm.model.name.Registration;
17
import eu.etaxonomy.vaadin.event.EditorActionType;
18
import eu.etaxonomy.vaadin.mvp.AbstractView;
19

    
20
/**
21
 * @author a.kohlbecker
22
 * @since Mar 22, 2017
23
 */
24
public class RegistrationEditorAction extends AbstractEditorAction<Registration> {
25

    
26
    /**
27
     * @param eventType
28
     */
29
    public RegistrationEditorAction(EditorActionType type) {
30
        super(type);
31
    }
32

    
33

    
34
    /**
35
     * @param action
36
     * @param source
37
     */
38
    public RegistrationEditorAction(EditorActionType action, Button source, Field<Registration> target, AbstractView sourceView) {
39
        super(action, source, target, sourceView);
40
    }
41

    
42
    /**
43
     * @param action
44
     * @param entityId
45
     * @param source
46
     * @param sourceView
47
     */
48
    public RegistrationEditorAction(EditorActionType action, UUID entityUuid, Button source, Field<Registration> target, AbstractView sourceView) {
49
        super(action, entityUuid, source, target, sourceView);
50
    }
51

    
52

    
53

    
54

    
55
}
(20-20/29)