|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ToolWindowType>
org.noos.xing.mydoggy.ToolWindowType
public enum ToolWindowType
Every tool window has a type that specifies the visual behaviours of the tool.
| Enum Constant Summary | |
|---|---|
DOCKED
When DOCKED type is used, the tool window shares frame space and fixes to a docking area along one of the tool window bars (the one containing the corresponding anchor button). |
|
EXTERN
When a toolwindow is added to another tool as a tab, that tool acquire this type. |
|
FLOATING
This type enables a tool window to be detached from the main window frame. |
|
FLOATING_FREE
This type differs from FLOATING type for the absence of the representative button on the tool window bar. |
|
FLOATING_LIVE
This type enables a tool to be floating in the frame rather than having floating windows "out of the frame". |
|
SLIDING
When SLIDING type is used, the tool window overlaps the main frame and/or other tool windows. |
|
| Method Summary | |
|---|---|
static ToolWindowType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ToolWindowType[] |
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 ToolWindowType DOCKED
DockedTypeDescriptorpublic static final ToolWindowType SLIDING
public static final ToolWindowType FLOATING
FloatingTypeDescriptorpublic static final ToolWindowType FLOATING_FREE
ToolWindowAnchorpublic static final ToolWindowType FLOATING_LIVE
FloatingLiveTypeDescriptorpublic static final ToolWindowType EXTERN
ToolWindow.addToolWindowTab(Dockable)| Method Detail |
|---|
public static ToolWindowType[] values()
for (ToolWindowType c : ToolWindowType.values()) System.out.println(c);
public static ToolWindowType 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
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||