Class SelectionChangeEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.eclipse.swt.events.TypedEvent
-
- org.eclipse.nebula.widgets.opal.duallist.SelectionChangeEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class SelectionChangeEvent extends org.eclipse.swt.events.TypedEvent
Instances of this class are sent as a result of DualList being selected.- See Also:
SelectionChangeListener
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description boolean
doit
A flag indicating whether the operation should be allowed.private java.util.List<DLItem>
items
The items that were selected.private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description SelectionChangeEvent(org.eclipse.swt.widgets.Event e)
Constructs a new instance of this class based on the information in the given untyped event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<DLItem>
getItems()
void
setItems(java.util.List<DLItem> items)
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
items
private java.util.List<DLItem> items
The items that were selected.
-
doit
public boolean doit
A flag indicating whether the operation should be allowed. Setting this field tofalse
will cancel the operation, depending on the widget.
-
-