Class AbstractAttributeConfiguration
- Direct Known Subclasses:
AbstractFileAttributeConfiguration
AbstractAttributeConfiguration lays the framework of configuration classes that uses fields to represent options,
loading and saving these fields using Configuration Actions.
Provide your own Configuration Actions, override init()
/load()
/save()
/saveDefaults()
/reload()
as necessary to create a fully-managed field-based configuration class.
Call then reload()
and save()
in your plugin when required. Direct calling of load()
and
saveDefaults()
is strongly discouraged.
If a specific class does not provide a Configuration Action for a field's type, AbstractAttributeConfiguration serialize it if possible, or resorts to toString/valueOf to store it nonetheless. It allows a wide variety of classes to be stored without providing explicit Configuration Actions. As such, each class have to provide at least a String Configuration Action in order for AbstractConfigurationAction to work properly in the majority of cases.
ExcludedFromConfiguration
annotation allows specific fields not to
be used by the field processor.
As with every AbstractAttributeConfiguration derivative, init()
have to be called immediately after
constructing the object, either at the end of the constructor or outside of it.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
init()
Init a field-based configuration.protected void
load()
Loads (and only loads) a field-based configuration using the IConfigurationAction reported values.protected void
registerAction
(IConfigurationAction action) Register a Configuration Action.void
reload()
Reloads a field-based configuration using the IConfigurationAction reported values.void
save()
Saves a field-based configuration.protected void
Save the default values of a field-based configuration.
-
Constructor Details
-
AbstractAttributeConfiguration
public AbstractAttributeConfiguration()
-
-
Method Details
-
registerAction
Register a Configuration Action.- Parameters:
action
- IConfigurationAction instance to register
-
init
Init a field-based configuration. Registers all the default values and loads the configuration. have to be called immediately after the object's successful construction.- Throws:
IllegalStateException
- Thrown when the field is either not accessible, of a not-supported type and neither serializable nor supporting toString/valueOf, or if the associated IConfigurationAction returned a value that cannot be used (invalid cast).
-
save
Saves a field-based configuration. Uses IConfigurationAction set to store them.- Throws:
IllegalStateException
- Thrown when the field is either not accessible, of a not-supported type and neither serializable nor supporting toString/valueOf, or if the associated IConfigurationAction returned a value that cannot be used (invalid cast).
-
reload
Reloads a field-based configuration using the IConfigurationAction reported values. Erases all pending changes.- Throws:
IllegalStateException
- Thrown when the field is either not accessible, of a not-supported type and neither serializable nor supporting toString/valueOf, or if the associated IConfigurationAction returned a value that cannot be used (invalid cast).
-
saveDefaults
Save the default values of a field-based configuration. Uses IConfigurationAction setDefault to store them.- Throws:
IllegalStateException
- Thrown when the field is either not accessible, of a not-supported type and neither serializable nor supporting toString/valueOf, or if the associated IConfigurationAction returned a value that cannot be used (invalid cast).
-
load
Loads (and only loads) a field-based configuration using the IConfigurationAction reported values. Erases all pending changes.- Throws:
IllegalStateException
- Thrown when the field is either not accessible, of a not-supported type and neither serializable nor supporting toString/valueOf, or if the associated IConfigurationAction returned a value that cannot be used (invalid cast).
-