Interface ItemElementView.Presenter
-
- All Superinterfaces:
ElementView.Presenter<ItemElementView>
- All Known Implementing Classes:
ItemElementPresenter
- Enclosing interface:
- ItemElementView
public static interface ItemElementView.Presenter extends ElementView.Presenter<ItemElementView>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,Map<String,Map<String,String>>>getExpandableItemsProperties()Retrieves aMapwith theMaps of all the items' nested propertiescom.google.gwt.dom.client.LIElementgetItemContainer(String itemId, Map<String,String> simplePropertiesMap, Map<String,Map<String,String>> expandablePropertiesValues)Map<String,Map<String,String>>getSimpleItemsProperties()Retrieves aMapwith theMaps of all the items' simple properties-
Methods inherited from interface org.drools.workbench.screens.scenariosimulation.client.collectioneditor.ElementView.Presenter
onDeleteItem, onEditItem, onStopEditingItem, onToggleRowExpansion, onToggleRowExpansion, remove, setCollectionEditorPresenter, toggleEditingStatus, updateCommonToggleStatus, updateItem
-
-
-
-
Method Detail
-
getItemContainer
com.google.gwt.dom.client.LIElement getItemContainer(String itemId, Map<String,String> simplePropertiesMap, Map<String,Map<String,String>> expandablePropertiesValues)
- Parameters:
itemId- the id of the current itemsimplePropertiesMap- the properties to be put inside theUListElementexpandablePropertiesValues- representing a single item of the list- Returns:
- the
LIElementrepresenting all the items of the list
-
getSimpleItemsProperties
Map<String,Map<String,String>> getSimpleItemsProperties()
Retrieves aMapwith theMaps of all the items' simple properties- Returns:
- a
Mapwhere the key is the itemId of the item container, and the value is the map propertyName/propertyValue
-
-