Interface SubDockView.Presenter
-
- All Known Subinterfaces:
CheatSheetView.Presenter,SettingsView.Presenter,TestToolsView.Presenter
- All Known Implementing Classes:
AbstractSubDockPresenter,CheatSheetPresenter,SettingsPresenter,TestToolsPresenter
- Enclosing interface:
- SubDockView<T extends SubDockView.Presenter>
public static interface SubDockView.Presenter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisCurrentlyShow(org.uberfire.backend.vfs.ObservablePath path)Verify if the currentSubDockalready shows data of the currently shown editor.voidreset()It resets the current status of theSubDockcomponentvoidsetCurrentPath(org.uberfire.backend.vfs.ObservablePath path)Set theObservablePathof the currently shown editor view
-
-
-
Method Detail
-
setCurrentPath
void setCurrentPath(org.uberfire.backend.vfs.ObservablePath path)
Set theObservablePathof the currently shown editor view- Parameters:
path-
-
isCurrentlyShow
boolean isCurrentlyShow(org.uberfire.backend.vfs.ObservablePath path)
Verify if the currentSubDockalready shows data of the currently shown editor. This is used to avoid unneeded re-population of theSubDock- Parameters:
path-- Returns:
trueif givenObservablePathis equals to the current path of thisSubDock
-
reset
void reset()
It resets the current status of theSubDockcomponent
-
-