Interface DefaultPropertySettings
-
- All Known Implementing Classes:
DefaultPropertySettingsImpl
public interface DefaultPropertySettingsProvides default settings configured for a property. The PropertyDescriptor of the configured property can be retrieved usinggetPropertyDescriptor()method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDefaultEditorCode()Returns editorCode configured for the property.java.util.Map<java.lang.String,java.lang.String>getParameters()Returns a map of all parameters configured for the property.PropertyDescriptorgetPropertyDescriptor()Returns a PropertyDescriptor of the property that this instance ofDefaultPropertySettingsrepresents.booleanisBaseProperty()Returns true if the property is configured as baseProperty.
-
-
-
Method Detail
-
getPropertyDescriptor
PropertyDescriptor getPropertyDescriptor()
Returns a PropertyDescriptor of the property that this instance ofDefaultPropertySettingsrepresents.
-
isBaseProperty
boolean isBaseProperty()
Returns true if the property is configured as baseProperty.- Returns:
- true if the property is configured as baseProperty, otherwise returns false.
-
getDefaultEditorCode
java.lang.String getDefaultEditorCode()
Returns editorCode configured for the property.- Returns:
- configured editorCode or null if no editorCode is configured.
-
getParameters
java.util.Map<java.lang.String,java.lang.String> getParameters()
Returns a map of all parameters configured for the property.- Returns:
- a map (name->value) of parameters configured for the property. Returns empty map if there are no configured parameters.
-
-