Project

General

Profile

Download (1.41 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 ReferenceEditorAction extends AbstractEditorAction {
20

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

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

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

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

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

    
63
}
(10-10/18)