Project

General

Profile

« Previous | Next » 

Revision e8674a36

Added by Andreas Kohlbecker about 6 years ago

ref #7195 introducing the concept of EditorActionContext stacks to facilitate creating blocking relations

View differences:

src/main/java/eu/etaxonomy/cdm/vaadin/event/RegistrationEditorAction.java
26 26
        super(type);
27 27
    }
28 28

  
29
    /**
30
     * @param edit
31
     * @param citationId
32
     */
33
    public RegistrationEditorAction(EditorActionType type, Integer enitityId) {
34
        super(type, enitityId);
35
    }
36 29

  
37 30
    /**
38 31
     * @param action
39 32
     * @param source
40 33
     */
41
    public RegistrationEditorAction(EditorActionType action, Component source) {
42
        super(action, source);
34
    public RegistrationEditorAction(EditorActionType action, Component source, AbstractView sourceView) {
35
        super(action, source, sourceView);
43 36
    }
44 37

  
45 38
    /**
......
52 45
        super(action, entityId, source, sourceView);
53 46
    }
54 47

  
55
    /**
56
     * @param action
57
     * @param entityId
58
     * @param source
59
     */
60
    public RegistrationEditorAction(EditorActionType action, Integer entityId, Component source) {
61
        super(action, entityId, source);
62
    }
63 48

  
64 49

  
65 50

  

Also available in: Unified diff