|
org.netbeans.api.visual 2.23.1 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EventProcessingType>
org.netbeans.api.visual.widget.EventProcessingType
public enum EventProcessingType
The enum represents allowed types of event processing the is used to process the Swing event coming from a view component and that should be delegated to widgets on the scene.
Enum Constant Summary | |
---|---|
ALL_WIDGETS
Means that an event is processed by all widgets in whole scene. |
|
FOCUSED_WIDGET_AND_ITS_CHILDREN
Means that an event is processed by a focused widget and its children only. |
|
FOCUSED_WIDGET_AND_ITS_CHILDREN_AND_ITS_PARENTS
Means that an event is processed by a focused widget and its children and its parents only. |
|
FOCUSED_WIDGET_AND_ITS_PARENTS
Means that an event is processed by a focused widget of a scene and then by its parents only. |
Method Summary | |
---|---|
static EventProcessingType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EventProcessingType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EventProcessingType ALL_WIDGETS
public static final EventProcessingType FOCUSED_WIDGET_AND_ITS_PARENTS
public static final EventProcessingType FOCUSED_WIDGET_AND_ITS_CHILDREN
public static final EventProcessingType FOCUSED_WIDGET_AND_ITS_CHILDREN_AND_ITS_PARENTS
Method Detail |
---|
public static EventProcessingType[] values()
for (EventProcessingType c : EventProcessingType.values()) System.out.println(c);
public static EventProcessingType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
org.netbeans.api.visual 2.23.1 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |