Interface TestToolsView
-
- All Superinterfaces:
org.uberfire.client.mvp.HasPresenter<TestToolsView.Presenter>,com.google.gwt.user.client.ui.IsWidget,SubDockView<TestToolsView.Presenter>
- All Known Implementing Classes:
TestToolsViewImpl
public interface TestToolsView extends SubDockView<TestToolsView.Presenter>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceTestToolsView.Presenter
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddDataObjectListGroupItem(com.google.gwt.dom.client.DivElement item)voidaddInstanceListGroupItem(com.google.gwt.dom.client.DivElement item)voidaddSimpleJavaInstanceListGroupItem(com.google.gwt.dom.client.DivElement item)voidaddSimpleJavaTypeListGroupItem(com.google.gwt.dom.client.DivElement item)voidclearDataObjectList()voidclearInputSearch()voidclearInstanceList()voidclearSimpleJavaInstanceFieldList()voidclearSimpleJavaTypeList()voiddisableAddButton()voiddisableEditorTab()By default the Editor Tab must be disabled (no user interaction allowed).voiddisableSearch()It disables all widgets related to the search boxvoidenableAddButton()By default the Add button is disabled (no user interaction allowed).voidenableEditorTab()By default the Editor Tab is disabled (no user interaction allowed).voidenableSearch()It enables all widgets related to the search boxTestToolsView.PresentergetPresenter()voidhideClearButton()voidshowClearButton()voidshowInstanceListContainerSeparator(boolean show)voidupdateInstanceListSeparator(boolean show)-
Methods inherited from interface org.drools.workbench.screens.scenariosimulation.client.rightpanel.SubDockView
reset
-
-
-
-
Method Detail
-
clearInputSearch
void clearInputSearch()
-
hideClearButton
void hideClearButton()
-
showClearButton
void showClearButton()
-
clearDataObjectList
void clearDataObjectList()
-
clearSimpleJavaTypeList
void clearSimpleJavaTypeList()
-
clearInstanceList
void clearInstanceList()
-
clearSimpleJavaInstanceFieldList
void clearSimpleJavaInstanceFieldList()
-
addDataObjectListGroupItem
void addDataObjectListGroupItem(com.google.gwt.dom.client.DivElement item)
-
addSimpleJavaTypeListGroupItem
void addSimpleJavaTypeListGroupItem(com.google.gwt.dom.client.DivElement item)
-
addInstanceListGroupItem
void addInstanceListGroupItem(com.google.gwt.dom.client.DivElement item)
-
addSimpleJavaInstanceListGroupItem
void addSimpleJavaInstanceListGroupItem(com.google.gwt.dom.client.DivElement item)
-
getPresenter
TestToolsView.Presenter getPresenter()
- Specified by:
getPresenterin interfaceSubDockView<TestToolsView.Presenter>
-
updateInstanceListSeparator
void updateInstanceListSeparator(boolean show)
-
showInstanceListContainerSeparator
void showInstanceListContainerSeparator(boolean show)
-
enableEditorTab
void enableEditorTab()
By default the Editor Tab is disabled (no user interaction allowed). It is enabled only by click on grid' header
-
disableEditorTab
void disableEditorTab()
By default the Editor Tab must be disabled (no user interaction allowed). It is enabled only by click on grid' header
-
enableSearch
void enableSearch()
It enables all widgets related to the search box
-
disableSearch
void disableSearch()
It disables all widgets related to the search box
-
enableAddButton
void enableAddButton()
By default the Add button is disabled (no user interaction allowed). It is enabled only by selection of a property/data object
-
disableAddButton
void disableAddButton()
-
-