|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<WindowEvent.Type>
net.sf.jguiraffe.gui.builder.event.WindowEvent.Type
public static enum WindowEvent.Type
An enumeration for the different types of window events. The type determines the action that was performed on the window when an event was fired.
| Enum Constant Summary | |
|---|---|
WINDOW_ACTIVATED
The window was activated. |
|
WINDOW_CLOSED
The window was closed. |
|
WINDOW_CLOSING
The window is about to be closed. |
|
WINDOW_DEACTIVATED
The window was deactivated. |
|
WINDOW_DEICONIFIED
A window that was minimized to an icon was restored. |
|
WINDOW_ICONIFIED
A window was minimized to an icon. |
|
WINDOW_OPENED
The window was opened. |
|
| Method Summary | |
|---|---|
static WindowEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static WindowEvent.Type[] |
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 WindowEvent.Type WINDOW_ACTIVATED
public static final WindowEvent.Type WINDOW_CLOSING
public static final WindowEvent.Type WINDOW_CLOSED
public static final WindowEvent.Type WINDOW_DEACTIVATED
public static final WindowEvent.Type WINDOW_DEICONIFIED
public static final WindowEvent.Type WINDOW_ICONIFIED
public static final WindowEvent.Type WINDOW_OPENED
| Method Detail |
|---|
public static WindowEvent.Type[] values()
for (WindowEvent.Type c : WindowEvent.Type.values()) System.out.println(c);
public static WindowEvent.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||