Project

General

Profile

Download (1.43 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.mvp.AbstractView;
14

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

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

    
28
    /**
29
     * @param edit
30
     * @param citationId
31
     */
32
    public RegistrationEditorAction(Action type, Integer enitityId) {
33
        super(type, enitityId);
34
    }
35

    
36
    /**
37
     * @param action
38
     * @param source
39
     */
40
    public RegistrationEditorAction(Action action, Component source) {
41
        super(action, source);
42
    }
43

    
44
    /**
45
     * @param action
46
     * @param entityId
47
     * @param source
48
     * @param sourceView
49
     */
50
    public RegistrationEditorAction(Action action, Integer entityId, Component source, AbstractView sourceView) {
51
        super(action, entityId, source, sourceView);
52
    }
53

    
54
    /**
55
     * @param action
56
     * @param entityId
57
     * @param source
58
     */
59
    public RegistrationEditorAction(Action action, Integer entityId, Component source) {
60
        super(action, entityId, source);
61
    }
62

    
63

    
64

    
65
}
(12-12/16)