Interface DefaultPropertySettings
- All Known Implementing Classes:
DefaultPropertySettingsImpl
public interface DefaultPropertySettings
Provides default settings configured for a property. The PropertyDescriptor of the configured property can be
retrieved using
getPropertyDescriptor() method.-
Method Summary
Modifier and TypeMethodDescriptionReturns editorCode configured for the property.Returns a map of all parameters configured for the property.Returns a PropertyDescriptor of the property that this instance ofDefaultPropertySettingsrepresents.booleanReturns true if the property is configured as baseProperty.
-
Method Details
-
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
String getDefaultEditorCode()Returns editorCode configured for the property.- Returns:
- configured editorCode or null if no editorCode is configured.
-
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.
-