Project

General

Profile

« Previous | Next » 

Revision c46954e3

Added by Andreas Kohlbecker almost 7 years ago

ref #6169 RelatedEntityListSelect (ToOneRelatedEntityField) edit and select working, add blocked by #6673

View differences:

src/main/java/eu/etaxonomy/cdm/vaadin/event/TaxonNameEditorAction.java
8 8
*/
9 9
package eu.etaxonomy.cdm.vaadin.event;
10 10

  
11
import com.vaadin.ui.Component;
12

  
11 13
/**
12 14
 * @author a.kohlbecker
13 15
 * @since Mar 22, 2017
14 16
 *
17
 * @deprecated replace by {@link EntityEditorAction}
15 18
 */
19
@Deprecated
16 20
public class TaxonNameEditorAction extends AbstractEditorAction {
17 21

  
18 22

  
19
    public TaxonNameEditorAction(Type eventType) {
23
    public TaxonNameEditorAction(Action eventType) {
20 24
        super(eventType);
21 25
    }
22 26

  
......
24 28
     * @param type
25 29
     * @param entityId
26 30
     */
27
    public TaxonNameEditorAction(Type type, Integer entityId) {
31
    public TaxonNameEditorAction(Action type, Integer entityId) {
28 32
        super(type, entityId);
29 33
    }
30 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

  
31 46

  
32 47
}

Also available in: Unified diff