Project

General

Profile

Download (1.5 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 ReferenceEditorAction extends AbstractEditorAction {
21

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

    
29
    /**
30
     * @param edit
31
     * @param citationId
32
     */
33
    public ReferenceEditorAction(EditorActionType type, Integer citationId) {
34
        super(type, citationId);
35
    }
36

    
37
    /**
38
     * @param type
39
     * @param entityId
40
     * @param source
41
     */
42
    public ReferenceEditorAction(EditorActionType type, Integer entityId, Component source) {
43
        super(type, entityId, source);
44
    }
45

    
46
    /**
47
     * @param action
48
     * @param source
49
     */
50
    public ReferenceEditorAction(EditorActionType action, Component source) {
51
        super(action, source);
52
    }
53

    
54
    /**
55
     * @param action
56
     * @param entityId
57
     * @param source
58
     * @param sourceView
59
     */
60
    public ReferenceEditorAction(EditorActionType action, Integer entityId, Component source, AbstractView sourceView) {
61
        super(action, entityId, source, sourceView);
62
    }
63

    
64
}
(10-10/19)