public final class ConfigurationElementDescription
extends java.lang.Object
It is expected that configuration element's name is not null. Attributes and children of the extension description might be null; value might be null as well.
This class can be instantiated.
This class is not intended to be subclassed.
ConfigurationElementAttribute| Constructor and Description |
|---|
ConfigurationElementDescription(java.lang.String name,
ConfigurationElementAttribute[] attributes,
java.lang.String value,
ConfigurationElementDescription[] children)
Constructor.
|
ConfigurationElementDescription(java.lang.String name,
ConfigurationElementAttribute attribute,
java.lang.String value,
ConfigurationElementDescription[] children)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
ConfigurationElementAttribute[] |
getAttributes()
Returns attributes of the configuration element.
|
ConfigurationElementDescription[] |
getChildren()
Returns children of the configuration element.
|
java.lang.String |
getName()
Returns name of the configuration element.
|
java.lang.String |
getValue()
Returns string value stored in the configuration element.
|
public ConfigurationElementDescription(java.lang.String name,
ConfigurationElementAttribute[] attributes,
java.lang.String value,
ConfigurationElementDescription[] children)
name - - name of the configuration elementattributes - - attributes of the configuration element. Might be null.value - - string value to be stored. Might be null.children - - children of the configuration element. Might be null.IConfigurationElement.getName(),
IConfigurationElement.getChildren(),
IConfigurationElement.getAttribute(String),
IConfigurationElement.getValue()public ConfigurationElementDescription(java.lang.String name,
ConfigurationElementAttribute attribute,
java.lang.String value,
ConfigurationElementDescription[] children)
name - - name of the configuration elementattribute - - attribute of the configuration element. Might be null.value - - string value to be stored. Might be null.children - - children of the configuration element. Might be null.IConfigurationElement.getName(),
IConfigurationElement.getChildren(),
IConfigurationElement.getAttribute(String),
IConfigurationElement.getValue()public ConfigurationElementDescription[] getChildren()
IConfigurationElement.getChildren()public java.lang.String getName()
IConfigurationElement.getName()public ConfigurationElementAttribute[] getAttributes()
IConfigurationElement.getAttribute(String)public java.lang.String getValue()
IConfigurationElement.getValue()