Interface EditorLogic<T>
-
- Type Parameters:
T- - the type of the value
- All Known Subinterfaces:
MultiReferenceEditorLogic<D,V>
- All Known Implementing Classes:
ConfigurableMultiReferenceEditor
public interface EditorLogic<T>Logic for editors.- Since:
- 6.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.hybris.cockpitng.editors.EditorContext<T>getEditorContext()Returns the editor context.com.hybris.cockpitng.editors.EditorListener<T>getEditorListener()Returns the editor listener.com.hybris.cockpitng.engine.WidgetInstanceManagergetWidgetInstanceManager()Returns the widget instance manager.
-
-
-
Method Detail
-
getWidgetInstanceManager
com.hybris.cockpitng.engine.WidgetInstanceManager getWidgetInstanceManager()
Returns the widget instance manager.- Returns:
- the widget instance manager
-
getEditorContext
com.hybris.cockpitng.editors.EditorContext<T> getEditorContext()
Returns the editor context.- Returns:
- the editor context
-
getEditorListener
com.hybris.cockpitng.editors.EditorListener<T> getEditorListener()
Returns the editor listener.- Returns:
- the editor listener
-
-