Interface ItemWidgetModel<T>
-
- Type Parameters:
T- item type
- All Superinterfaces:
WidgetModel
- All Known Subinterfaces:
ItemEditorWidgetModel<T>
- All Known Implementing Classes:
DefaultItemEditorWidgetModel,DefaultItemWidgetModel
public interface ItemWidgetModel<T> extends WidgetModel
An ItemWidgetModel is a widget model for holding an Item reference of a specific type. Typically, all registeredWidgetModelListeners are notified as soon as the item is changed by a call to thesetItem(Object)method.- See Also:
WidgetModel,ItemEditorWidgetModel,ListWidgetModel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TgetItem()Returns the item held by this model.booleansetItem(T item)Sets the item held by this model to item.-
Methods inherited from interface de.hybris.platform.cockpit.widgets.models.WidgetModel
addWidgetModelListener, notifyListeners, removeWidgetModelLlistener
-
-