Package com.hybris.cockpitng.editors
Interface CockpitEditorRenderer<T>
-
- All Known Implementing Classes:
AbstractBooleanEditorRenderer,AbstractCockpitEditorRenderer,AbstractDateTimeEditor,AbstractDecimalEditor,AbstractDragAndDropFileUploadEditor,AbstractEditorRendererWrapper,AbstractInstantEditorLabelRenderer,AbstractIntegralEditor,AbstractLocalizedEditor,AbstractPaginableEditorRenderer,AbstractTextBasedEditorRenderer,AbstractTextEditor,CheckboxBooleanEditor,CollapsibleCollectionLabelRenderer,CollectionLabelRenderer,CompareViewLabelRendererWrapper,CustomizedInstantEditorLabelsRenderer,DecoratedEditorRenderer,DefaultBigDecimalEditor,DefaultBigIntegerEditor,DefaultBooleanEditor,DefaultByteEditor,DefaultCharacterEditor,DefaultClassEditor,DefaultDateEditor,DefaultDecimalEditor,DefaultDummyEditorRenderer,DefaultEnumEditor,DefaultEnumMultiReferenceEditor,DefaultExtendedMultiReferenceEditor,DefaultFileUploadEditor,DefaultFixedReferenceEditor,DefaultFloatEditor,DefaultInstantEditorLabelRenderer,DefaultIntegerEditor,DefaultListEditorRenderer,DefaultLongEditor,DefaultMapEditorRenderer,DefaultMultiReferenceEditor,DefaultPasswordEditor,DefaultRangeEditor,DefaultReferenceEditor,DefaultShortEditor,DefaultTextEditor,DefaultTimeEditor,DefaultZulCockpitEditorRenderer,DragAndDropFileUploadEditor,DropdownBooleanEditor,ExampleTextEditor,ExampleWidgetStubEditor,FixedInstantEditorLabelsRenderer,InstantEditorRenderer,ItemPreviewLabelRenderer,LocalizedEditor,LocalizedSimpleEditor,MapLabelRenderer,MultiDragAndDropFileUploadEditor,WysiwygEditor
public interface CockpitEditorRenderer<T>Renderer of a cockpit editor. Specified in the cockpit editor definition.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringINITIAL_EDIT_STRING
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidrender(org.zkoss.zk.ui.Component parent, EditorContext<T> context, EditorListener<T> listener)Creates a new editor component and attaches it to the specifiedComponentcomponent.
-
-
-
Field Detail
-
INITIAL_EDIT_STRING
static final java.lang.String INITIAL_EDIT_STRING
- See Also:
- Constant Field Values
-
-
Method Detail
-
render
void render(org.zkoss.zk.ui.Component parent, EditorContext<T> context, EditorListener<T> listener)Creates a new editor component and attaches it to the specifiedComponentcomponent.- Parameters:
parent- parent component the editor should be attached tocontext- the context for the editor creationlistener- the listener to notify the rest of the world about value changes and other events
-
-