Project

General

Profile

Download (1.7 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 java.util.Stack;
12
import java.util.UUID;
13

    
14
import com.vaadin.ui.Button;
15
import com.vaadin.ui.Field;
16

    
17
import eu.etaxonomy.cdm.model.name.TaxonName;
18
import eu.etaxonomy.vaadin.event.EditorActionType;
19
import eu.etaxonomy.vaadin.mvp.AbstractView;
20

    
21
/**
22
 * @author a.kohlbecker
23
 * @since Mar 22, 2017
24
 *
25
 */
26
public class TaxonNameEditorAction extends AbstractEditorAction<TaxonName> {
27

    
28

    
29
    public TaxonNameEditorAction(EditorActionType eventType) {
30
        super(eventType);
31
    }
32

    
33
    /**
34
     * @param action
35
     * @param source
36
     */
37
    public TaxonNameEditorAction(EditorActionType action, Button source, Field<TaxonName> target, AbstractView sourceView) {
38
        super(action, source, target, sourceView);
39
    }
40

    
41
    /**
42
     * @param action
43
     * @param entityId
44
     * @param source
45
     * @param sourceView
46
     */
47
    public TaxonNameEditorAction(EditorActionType action, UUID entityUuid, Button source, Field<TaxonName> target, AbstractView sourceView) {
48
        super(action, entityUuid, source, target, sourceView);
49
    }
50

    
51
    /**
52
     * @param action
53
     * @param entityId
54
     * @param source
55
     * @param sourceView
56
     * @param context
57
     */
58
    public TaxonNameEditorAction(EditorActionType action, UUID entityUuid, Button source, Field<TaxonName> target, AbstractView sourceView,
59
            Stack<EditorActionContext> context) {
60
        super(action, entityUuid, source, target, sourceView, context);
61
    }
62

    
63

    
64

    
65

    
66
}
(17-17/22)