Interface ItemEditorWidgetModel<T extends TypedObject>
-
- Type Parameters:
T- item type (must be aTypedObject)
- All Superinterfaces:
ItemWidgetModel<T>,WidgetModel
- All Known Implementing Classes:
DefaultItemEditorWidgetModel
public interface ItemEditorWidgetModel<T extends TypedObject> extends ItemWidgetModel<T>
AnItemEditorWidgetModelis aWidgetModelintended to be used by widgets displaying item editors. It defines additional methods for specifying the configuration context code used when loading editor UI configurations.- See Also:
UIComponentConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetConfigurationCode()Returns the UI configuration context code.booleansetConfigurationCode(java.lang.String confCode)Sets the UI configuration context code toconfCode.-
Methods inherited from interface de.hybris.platform.cockpit.widgets.models.ItemWidgetModel
getItem, setItem
-
Methods inherited from interface de.hybris.platform.cockpit.widgets.models.WidgetModel
addWidgetModelListener, notifyListeners, removeWidgetModelLlistener
-
-
-
-
Method Detail
-
setConfigurationCode
boolean setConfigurationCode(java.lang.String confCode)
Sets the UI configuration context code toconfCode.- Parameters:
confCode- UI configuration context code- Returns:
- true if a change was made, false otherwise
-
getConfigurationCode
java.lang.String getConfigurationCode()
Returns the UI configuration context code.- Returns:
- UI configuration context code
-
-