public abstract class AbstractExtension extends Object implements Extension
| Constructor and Description |
|---|
AbstractExtension() |
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getProperties()
Gets a list of all properties on the extension.
|
<T> T |
getPropertyValue(String key)
Gets a property value of an extension.
|
<T> void |
setPropertyValue(String key,
T value)
Sets a property on the extension.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitdeserialize, serializepublic <T> void setPropertyValue(String key, T value) throws ExtensionPropertyException
ExtensionsetPropertyValue in interface ExtensionT - class of the valuekey - property keyvalue - value to set for the given keyExtensionPropertyException - if the given key is not a valid
property on this extensionpublic <T> T getPropertyValue(String key) throws ExtensionPropertyException
ExtensiongetPropertyValue in interface ExtensionT - class of the valuekey - property keyExtensionPropertyException - if the given key is not a valid
property on this extensionpublic List<String> getProperties()
ExtensiongetProperties in interface Extension