public static final class EngineComponentsProvider.ComponentInfo extends Object
Modifier and Type | Method and Description |
---|---|
static EngineComponentsProvider.ComponentInfo |
create(String tcId)
Create a component information about a
TopComponent ,
which is opened by default. |
static EngineComponentsProvider.ComponentInfo |
create(String tcId,
boolean opened)
Create a component information about a
TopComponent . |
static EngineComponentsProvider.ComponentInfo |
create(String tcId,
boolean opened,
boolean minimized)
Create a component information about a
TopComponent . |
Component |
getComponent()
Get the component.
|
boolean |
isMinimized()
Test if the component is to be opened in a minimized state when the
debugger engine starts.
|
boolean |
isOpened()
Test if the component is to be opened when the debugger engine starts.
|
String |
toString() |
public Component getComponent()
public boolean isOpened()
true
when this component is to be opened on engine start,
false
otherwise.public boolean isMinimized()
true
when this component is to be opened in a minimized state,
false
otherwise.public static EngineComponentsProvider.ComponentInfo create(String tcId)
TopComponent
,
which is opened by default.tcName
- The ID of the TopComponent
public static EngineComponentsProvider.ComponentInfo create(String tcId, boolean opened)
TopComponent
.tcName
- The ID of the TopComponent
opened
- true
if the component should be opened,
false
otherwise.public static EngineComponentsProvider.ComponentInfo create(String tcId, boolean opened, boolean minimized)
TopComponent
.tcName
- The ID of the TopComponent
opened
- true
if the component should be opened,
false
otherwise.minimized
- true
if the component should be opened in a minimized state,
false
otherwise.