public interface UberfireDocks
Modifier and Type | Method and Description |
---|---|
void |
add(UberfireDock... docks)
Adds a
UberfireDock to UberfireDocks. |
void |
close(UberfireDock dock)
Close a
UberfireDock from a given perspective. |
void |
hide(UberfireDockPosition position,
String perspectiveName)
Hides the docks bar associated with
UberfireDockPosition
for a given perspective. |
void |
open(UberfireDock dock)
Open a
UberfireDock from a given perspective. |
void |
remove(UberfireDock... docks)
Removes a
UberfireDock from UberfireDocks. |
void |
show(UberfireDockPosition position,
String perspectiveName)
Shows the docks bar associated with
UberfireDockPosition
for a given perspective. |
void |
toggle(UberfireDock dock)
Toggle a
UberfireDock from a given perspective. |
void add(UberfireDock... docks)
UberfireDock
to UberfireDocks.
Each UberfireDock
is displayed after the
associated Perspective is loaded.docks
- one or more docks to be added.void remove(UberfireDock... docks)
UberfireDock
from UberfireDocks.docks
- one or more docks to be added.void open(UberfireDock dock)
UberfireDock
from a given perspective.
This opens the PlaceRequest
associated with the
given dock on the docks panel.dock
- that will be selected.void close(UberfireDock dock)
UberfireDock
from a given perspective.
This closes the PlaceRequest
associated with the
given dock and the docks panel.dock
- that will be deselected.void toggle(UberfireDock dock)
UberfireDock
from a given perspective.
Switch from open/close a dockdock
- that will be deselected.void hide(UberfireDockPosition position, String perspectiveName)
UberfireDockPosition
for a given perspective.position
- the dock position that will be hidden.perspectiveName
- pespective that the dock will be hidden.void show(UberfireDockPosition position, String perspectiveName)
UberfireDockPosition
for a given perspective.position
- the dock position that will be shown.perspectiveName
- perspective that the dock will be shown.Copyright © 2012–2019 JBoss by Red Hat. All rights reserved.