Project

General

Profile

« Previous | Next » 

Revision 96783004

Added by Andreas Kohlbecker almost 7 years ago

ref #6562 presenters can handle events from own view & solving listSelect update problem

View differences:

src/main/java/eu/etaxonomy/cdm/vaadin/event/ReferenceEditorAction.java
10 10

  
11 11
import com.vaadin.ui.Component;
12 12

  
13
import eu.etaxonomy.vaadin.mvp.AbstractView;
14

  
13 15
/**
14 16
 * @author a.kohlbecker
15 17
 * @since Mar 22, 2017
......
40 42
        super(type, entityId, source);
41 43
    }
42 44

  
45
    /**
46
     * @param action
47
     * @param source
48
     */
49
    public ReferenceEditorAction(Action action, Component source) {
50
        super(action, source);
51
    }
43 52

  
53
    /**
54
     * @param action
55
     * @param entityId
56
     * @param source
57
     * @param sourceView
58
     */
59
    public ReferenceEditorAction(Action action, Integer entityId, Component source, AbstractView sourceView) {
60
        super(action, entityId, source, sourceView);
61
    }
44 62

  
45 63
}

Also available in: Unified diff