Project

General

Profile

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

    
22

    
23
    public TaxonNameEditorAction(Action eventType) {
24
        super(eventType);
25
    }
26

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

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

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

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

    
64

    
65

    
66

    
67
}
(14-14/15)