Package org.eclipse.nebula.widgets.chips
Class CloseEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.eclipse.swt.events.TypedEvent
-
- org.eclipse.nebula.widgets.chips.CloseEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class CloseEvent extends org.eclipse.swt.events.TypedEvent
Instances of this class are sent as a result of widgets being closed.Note: The fields that are filled in depend on the widget.
- See Also:
CloseListener
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description boolean
doit
A flag indicating whether the operation should be allowed.private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description CloseEvent(org.eclipse.swt.widgets.Event e)
Constructs a new instance of this class based on the information in the given untyped event.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
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.
-
-