Interface WorkbenchDocksHandler
-
- All Known Implementing Classes:
AbstractWorkbenchDocksHandler
public interface WorkbenchDocksHandlerComponent that handles the state of the authoring docks
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinit(org.uberfire.mvp.Command updateDocksCommand)Initializes the handler with the callbackCommand.Collection<org.uberfire.client.workbench.docks.UberfireDock>provideDocks(String perspectiveIdentifier)Provides a Collection containing theUberfireDockthat should be displayed when this handler is activebooleanshouldDisableDocks()Determines if the docks should be disabled or notbooleanshouldRefreshDocks()Determines if the docks should be refreshed or not.
-
-
-
Method Detail
-
init
void init(org.uberfire.mvp.Command updateDocksCommand)
Initializes the handler with the callbackCommand. ThisCommandwill be executed any time the docks must be refreshed
-
shouldRefreshDocks
boolean shouldRefreshDocks()
Determines if the docks should be refreshed or not.
-
shouldDisableDocks
boolean shouldDisableDocks()
Determines if the docks should be disabled or not
-
provideDocks
Collection<org.uberfire.client.workbench.docks.UberfireDock> provideDocks(String perspectiveIdentifier)
Provides a Collection containing theUberfireDockthat should be displayed when this handler is active
-
-