Package io.guise.framework.event
Class ListSelectionEvent<V>
- java.lang.Object
-
- java.util.EventObject
-
- com.globalmentor.event.AbstractEvent
-
- io.guise.framework.event.AbstractGuiseEvent
-
- io.guise.framework.event.CollectionEvent<E>
-
- io.guise.framework.event.SetEvent<java.lang.Integer>
-
- io.guise.framework.event.ListSelectionEvent<V>
-
- Type Parameters:
V
- The type of values selected.
- All Implemented Interfaces:
com.globalmentor.event.Event
,GuiseEvent
,java.io.Serializable
public class ListSelectionEvent<V> extends SetEvent<java.lang.Integer>
An event indicating the list selection has been modified. An added or removed element represents an added or removed index of the selection. If neither an added nor a removed element are provided, the event represents a general set modification.- Author:
- Garret Wilson
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListSelectionEvent(ListSelectModel<V> source)
Source constructor for general selection modification.ListSelectionEvent(ListSelectModel<V> source, java.lang.Integer addedElement, java.lang.Integer removedElement)
Source constructor for an added and/or removed element.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListSelectModel<V>
getSource()
-
Methods inherited from class io.guise.framework.event.CollectionEvent
getAddedElement, getRemovedElement
-
Methods inherited from class io.guise.framework.event.AbstractGuiseEvent
getSession
-
-
-
-
Constructor Detail
-
ListSelectionEvent
public ListSelectionEvent(ListSelectModel<V> source)
Source constructor for general selection modification.- Parameters:
source
- The object on which the event initially occurred.- Throws:
java.lang.NullPointerException
- if the given source isnull
.
-
ListSelectionEvent
public ListSelectionEvent(ListSelectModel<V> source, java.lang.Integer addedElement, java.lang.Integer removedElement)
Source constructor for an added and/or removed element.- Parameters:
source
- The object on which the event initially occurred.addedElement
- The index that was added to the selection, ornull
if no index was added or it is unknown whether or which indices were added.removedElement
- The index that was removed from the selection, ornull
if no index was removed or it is unknown whether or which indices were removed.- Throws:
java.lang.NullPointerException
- if the given source isnull
.
-
-
Method Detail
-
getSource
public ListSelectModel<V> getSource()
- Specified by:
getSource
in interfacecom.globalmentor.event.Event
- Overrides:
getSource
in classjava.util.EventObject
-
-