Class FixedInstantEditorLabelsRenderer.FixedLabelProvider
- java.lang.Object
-
- com.hybris.cockpitng.editor.instant.FixedInstantEditorLabelsRenderer.FixedLabelProvider
-
- All Implemented Interfaces:
InstantEditorLabelProvider,org.springframework.core.Ordered
- Enclosing class:
- FixedInstantEditorLabelsRenderer
protected class FixedInstantEditorLabelsRenderer.FixedLabelProvider extends java.lang.Object implements InstantEditorLabelProvider
-
-
Constructor Summary
Constructors Constructor Description FixedLabelProvider(EditorContext<java.lang.Object> editorContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanHandle(java.lang.String editorType)Method used to determine if label provider is able to convert the value of underlying editor.java.lang.StringgetLabel(java.lang.String editorType, java.lang.Object value)Method converting passed value to its string representationintgetOrder()
-
-
-
Constructor Detail
-
FixedLabelProvider
public FixedLabelProvider(EditorContext<java.lang.Object> editorContext)
-
-
Method Detail
-
canHandle
public boolean canHandle(java.lang.String editorType)
Description copied from interface:InstantEditorLabelProviderMethod used to determine if label provider is able to convert the value of underlying editor. When deciding which label provider should be used, the first returningtruefrom this method is choosen.- Specified by:
canHandlein interfaceInstantEditorLabelProvider- Parameters:
editorType- type of underlying editor as returned byEditor.getType()- Returns:
- if this label provider is able to convert underlying editor's value
-
getLabel
public java.lang.String getLabel(java.lang.String editorType, java.lang.Object value)Description copied from interface:InstantEditorLabelProviderMethod converting passed value to its string representation- Specified by:
getLabelin interfaceInstantEditorLabelProvider- Parameters:
editorType- type of underlying editor as returned byEditor.getType()value- underlying editor's value to convert- Returns:
- string representation of
value
-
getOrder
public int getOrder()
- Specified by:
getOrderin interfaceorg.springframework.core.Ordered
-
-