Project

General

Profile

Download (1.38 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.UUID;
12

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

    
16
import eu.etaxonomy.cdm.model.reference.Reference;
17
import eu.etaxonomy.vaadin.event.EditorActionType;
18
import eu.etaxonomy.vaadin.mvp.AbstractView;
19

    
20
/**
21
 * @author a.kohlbecker
22
 * @since Mar 22, 2017
23
 */
24
public class ReferenceEditorAction extends AbstractEditorAction<Reference> {
25

    
26

    
27
    /**
28
     * @param type
29
     */
30
    public ReferenceEditorAction(EditorActionType type) {
31
        super(type);
32
    }
33

    
34

    
35
    /**
36
     * @param action
37
     * @param source
38
     * @param target
39
     * @param sourceView
40
     */
41
    public ReferenceEditorAction(EditorActionType action, Button source, Field<Reference> target, AbstractView sourceView) {
42
        super(action, source, target, sourceView);
43
    }
44

    
45
    /**
46
     * @param action
47
     * @param entityUuid
48
     * @param source
49
     * @param target
50
     * @param sourceView
51
     */
52
    public ReferenceEditorAction(EditorActionType action, UUID entityUuid, Button source, Field<Reference> target, AbstractView sourceView) {
53
        super(action, entityUuid, source, target, sourceView);
54
    }
55

    
56
}
(18-18/29)