Project

General

Profile

Download (1.57 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
 */
21
public class TaxonNameEditorAction extends AbstractEditorAction {
22

    
23

    
24
    public TaxonNameEditorAction(EditorActionType eventType) {
25
        super(eventType);
26
    }
27

    
28
    /**
29
     * @param type
30
     * @param entityId
31
     */
32
    public TaxonNameEditorAction(EditorActionType type, Integer entityId) {
33
        super(type, entityId);
34
    }
35

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

    
45
    /**
46
     * @param action
47
     * @param source
48
     */
49
    public TaxonNameEditorAction(EditorActionType action, Component source) {
50
        super(action, source);
51
        // TODO Auto-generated constructor stub
52
    }
53

    
54
    /**
55
     * @param action
56
     * @param entityId
57
     * @param source
58
     * @param sourceView
59
     */
60
    public TaxonNameEditorAction(EditorActionType action, Integer entityId, Component source, AbstractView sourceView) {
61
        super(action, entityId, source, sourceView);
62
        // TODO Auto-generated constructor stub
63
    }
64

    
65

    
66

    
67

    
68
}
(14-14/19)