|
org.netbeans.api.visual 2.2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.netbeans.api.visual.action.WidgetAction.State
public abstract static class WidgetAction.State
Represents a state of event processing.
Field Summary | |
---|---|
static WidgetAction.State |
CHAIN_ONLY
The state that means: The event is processed by the action and only actions that are in the same chain can process the event too. |
static WidgetAction.State |
CONSUMED
The state that means: The event is processed by the action and the processing has to stopped immediately (no other action should processed it). |
static WidgetAction.State |
REJECTED
The state that means: The event is not processed by the action and has to be processed by other actions too. |
Method Summary | |
---|---|
static WidgetAction.State |
createLocked(Widget lockedWidget,
WidgetAction lockedAction)
Creates a state that means: The event is processed and the processing has to stopped immediately (no other action should processed it). |
abstract WidgetAction |
getLockedAction()
Returns whether (and by which action) the next event has to be processed prior to regular processing. |
abstract Widget |
getLockedWidget()
Returns whether (and by which widget) the next event has to be processed prior to regular processing. |
abstract boolean |
isConsumed()
Returns whether the event is consumed |
abstract boolean |
isLockedInChain()
Returns whether the event processing has to be stopped after the processing by the chain where the actions is added. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final WidgetAction.State REJECTED
public static final WidgetAction.State CONSUMED
public static final WidgetAction.State CHAIN_ONLY
Method Detail |
---|
public static WidgetAction.State createLocked(Widget lockedWidget, WidgetAction lockedAction)
public abstract boolean isLockedInChain()
public abstract boolean isConsumed()
public abstract Widget getLockedWidget()
public abstract WidgetAction getLockedAction()
|
org.netbeans.api.visual 2.2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |