1
2
3
4
5
6
7
8
9
10
11
12 package sk.uniba.euromath.editor.selections;
13
14 import sk.baka.ikslibs.interval.DOMIntervalSet;
15
16
17 /***
18 * A listener which is notified when a xml selection changes.
19 *
20 *
21 * TODO GUI : this could contains only some update of previous selection
22 * e.g. some DOMInterval is add to selection, than the result of
23 * @see DOMIntervalSet#union(sk.baka.ikslibs.interval.DOMInterval) can be this update
24 */
25 public interface IDOMSelectionChangedListener {
26
27 /***
28 * Notifies that the selection has changed.
29 *
30 * @param event
31 * event object describing the change
32 */
33 public void selectionChanged(DOMSelectionChangedEvent event);
34 }