Class AbstractFeatureUIEditor
- java.lang.Object
-
- de.hybris.platform.cockpit.model.editor.impl.AbstractUIEditor
-
- de.hybris.platform.cockpit.model.editor.impl.AbstractFeatureUIEditor
-
- All Implemented Interfaces:
UIEditor
- Direct Known Subclasses:
DefaultFeatureUIEditor
public abstract class AbstractFeatureUIEditor extends AbstractUIEditor
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class de.hybris.platform.cockpit.model.editor.impl.AbstractUIEditor
AbstractUIEditor.CancelButtonContainer, AbstractUIEditor.CancelListener, AbstractUIEditor.ErrorDiv
-
-
Field Summary
Fields Modifier and Type Field Description protected ClassAttributeAssignmentModelassignmentprotected UIEditoreditorprotected org.zkoss.zk.ui.HtmlBasedComponenteditorViewComponentprotected FeatureValuefeatureValueprotected ClassAttributePropertyDescriptorpropertyDescriptorprotected DefaultFeatureUnitUIEditorunitEditor-
Fields inherited from class de.hybris.platform.cockpit.model.editor.impl.AbstractUIEditor
ATTRIBUTE_QUALIFIER_PARAM, CANCEL_BTN, EVENT_SOURCE, inEditMode, initialEditValue, initialInputString, PROPERTY_DESCRIPTOR_PARAM, SEARCH_MODE_PARAM
-
Fields inherited from interface de.hybris.platform.cockpit.model.editor.UIEditor
INITIAL_EDIT_STRING
-
-
Constructor Summary
Constructors Constructor Description AbstractFeatureUIEditor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected DefaultFeatureUnitUIEditorcreateUnitUIEditor()org.zkoss.zk.ui.HtmlBasedComponentcreateViewComponent(java.lang.Object initialValue, java.util.Map<java.lang.String,? extends java.lang.Object> parameters, EditorListener listener)Creates a new editor component and attaches it to the specifiedPagepage.protected ClassAttributePropertyDescriptorextractPropertyDescriptor(java.util.Map<java.lang.String,? extends java.lang.Object> parameters)ClassAttributeAssignmentModelgetAssignment()ClassificationServicegetClassificationService()protected UIEditorgetEditor(ClassAttributeAssignmentModel assignment)EditorFactorygetEditorFactory()protected java.lang.ObjectgetEditorInitialValue(java.lang.Object initialValue)protected EditorListenergetEditorListener(EditorListener listener)java.lang.StringgetEditorType()ModelServicegetModelService()ClassAttributePropertyDescriptorgetPropertyDescriptor()TypeServicegetTypeService()protected booleanisNumber()voidsetAssignment(ClassAttributeAssignmentModel assignment)voidsetClassificationService(ClassificationService classificationService)voidsetEditorFactory(EditorFactory editorFactory)voidsetFocus(org.zkoss.zk.ui.HtmlBasedComponent rootEditorComponent, boolean selectAll)Sets the focus on the given input component which can be the rootEditorComponent or a child of itvoidsetModelService(ModelService modelService)voidsetPropertyDescriptor(ClassAttributePropertyDescriptor propertyDescriptor)voidsetValue(java.lang.Object value, java.lang.Object unitValue)booleansupportUnits()-
Methods inherited from class de.hybris.platform.cockpit.model.editor.impl.AbstractUIEditor
applyReferenceRelatedAttributes, createEditor, createEditor, createEditor, createEditor, filterValues, fireValueChanged, getRootSearchType, getUIEditor, getValue, isEditable, isEditable, isOptional, isSearchMode, parseInitialInputString, parseTemplateCodes, persistValues, persistValues, setEditable, setOptional, setValue
-
-
-
-
Field Detail
-
propertyDescriptor
protected ClassAttributePropertyDescriptor propertyDescriptor
-
assignment
protected ClassAttributeAssignmentModel assignment
-
featureValue
protected FeatureValue featureValue
-
editor
protected UIEditor editor
-
editorViewComponent
protected org.zkoss.zk.ui.HtmlBasedComponent editorViewComponent
-
unitEditor
protected DefaultFeatureUnitUIEditor unitEditor
-
-
Method Detail
-
createViewComponent
public org.zkoss.zk.ui.HtmlBasedComponent createViewComponent(java.lang.Object initialValue, java.util.Map<java.lang.String,? extends java.lang.Object> parameters, EditorListener listener)Description copied from interface:UIEditorCreates a new editor component and attaches it to the specifiedPagepage.- Parameters:
initialValue- editor's initial valueparameters- parameters passed via configuration for particular editorlistener- theEditorListenerthat will receive events when the editor's value is changed- Returns:
- the editor component
-
extractPropertyDescriptor
protected ClassAttributePropertyDescriptor extractPropertyDescriptor(java.util.Map<java.lang.String,? extends java.lang.Object> parameters)
-
createUnitUIEditor
protected DefaultFeatureUnitUIEditor createUnitUIEditor()
-
getEditor
protected UIEditor getEditor(ClassAttributeAssignmentModel assignment)
-
getEditorType
public java.lang.String getEditorType()
-
getEditorInitialValue
protected java.lang.Object getEditorInitialValue(java.lang.Object initialValue)
-
getEditorListener
protected EditorListener getEditorListener(EditorListener listener)
-
setFocus
public void setFocus(org.zkoss.zk.ui.HtmlBasedComponent rootEditorComponent, boolean selectAll)Description copied from interface:UIEditorSets the focus on the given input component which can be the rootEditorComponent or a child of it- Specified by:
setFocusin interfaceUIEditor- Overrides:
setFocusin classAbstractUIEditor- Parameters:
rootEditorComponent- the rootEditorComponent which is returned on method createViewComponentselectAll- if true, select the whole input field after focus. It is not guaranteed that the editor supports selection.
-
setValue
public void setValue(java.lang.Object value, java.lang.Object unitValue)
-
getAssignment
public ClassAttributeAssignmentModel getAssignment()
-
setAssignment
public void setAssignment(ClassAttributeAssignmentModel assignment)
-
getPropertyDescriptor
public ClassAttributePropertyDescriptor getPropertyDescriptor()
-
setPropertyDescriptor
public void setPropertyDescriptor(ClassAttributePropertyDescriptor propertyDescriptor)
-
getTypeService
public TypeService getTypeService()
-
isNumber
protected boolean isNumber()
-
supportUnits
public boolean supportUnits()
-
setEditorFactory
public void setEditorFactory(EditorFactory editorFactory)
-
getEditorFactory
public EditorFactory getEditorFactory()
-
setModelService
public void setModelService(ModelService modelService)
-
getModelService
public ModelService getModelService()
-
getClassificationService
public ClassificationService getClassificationService()
-
setClassificationService
public void setClassificationService(ClassificationService classificationService)
-
-