Class AbstractSelectionEvent<E>
- java.lang.Object
-
- com.macrofocus.selection.implementation.AbstractSelectionEvent<E>
-
- All Implemented Interfaces:
SelectionEvent<E>
- Direct Known Subclasses:
SimpleSelectionEvent
,SingleSelectionEvent
public abstract class AbstractSelectionEvent<E> extends java.lang.Object implements SelectionEvent<E>
Created by luc on 20/04/16.
-
-
Constructor Summary
Constructors Constructor Description AbstractSelectionEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Iterable<E>
getSelected()
java.lang.Iterable<E>
getUnselected()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.macrofocus.selection.SelectionEvent
getAffected, getModel, isAffected
-
-
-
-
Method Detail
-
getSelected
public java.lang.Iterable<E> getSelected()
- Specified by:
getSelected
in interfaceSelectionEvent<E>
-
getUnselected
public java.lang.Iterable<E> getUnselected()
- Specified by:
getUnselected
in interfaceSelectionEvent<E>
-
-