Project

General

Profile

Download (1.17 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 com.vaadin.ui.Component;
12

    
13
import eu.etaxonomy.vaadin.event.EditorActionType;
14
import eu.etaxonomy.vaadin.mvp.AbstractView;
15

    
16
/**
17
 * @author a.kohlbecker
18
 * @since Mar 22, 2017
19
 */
20
public class RegistrationEditorAction extends AbstractEditorAction {
21

    
22
    /**
23
     * @param eventType
24
     */
25
    public RegistrationEditorAction(EditorActionType type) {
26
        super(type);
27
    }
28

    
29

    
30
    /**
31
     * @param action
32
     * @param source
33
     */
34
    public RegistrationEditorAction(EditorActionType action, Component source, AbstractView sourceView) {
35
        super(action, source, sourceView);
36
    }
37

    
38
    /**
39
     * @param action
40
     * @param entityId
41
     * @param source
42
     * @param sourceView
43
     */
44
    public RegistrationEditorAction(EditorActionType action, Integer entityId, Component source, AbstractView sourceView) {
45
        super(action, entityId, source, sourceView);
46
    }
47

    
48

    
49

    
50

    
51
}
(14-14/22)