Package org.apache.commons.configuration
Class ConfigurationFactory.AdditionalConfigurationData
- java.lang.Object
-
- org.apache.commons.configuration.ConfigurationFactory.AdditionalConfigurationData
-
- Enclosing class:
- ConfigurationFactory
public static class ConfigurationFactory.AdditionalConfigurationData extends java.lang.Object
A simple data class that holds all information about a configuration from the<additional>section.
-
-
Constructor Summary
Constructors Constructor Description AdditionalConfigurationData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddConfiguration(Configuration config)Sets the configuration object.java.lang.StringgetAt()Returns the value of theatattribute.ConfigurationgetConfiguration()Returns the configuration object.voidsetAt(java.lang.String string)Sets the value of theatattribute.
-
-
-
Constructor Detail
-
AdditionalConfigurationData
public AdditionalConfigurationData()
-
-
Method Detail
-
getAt
public java.lang.String getAt()
Returns the value of theatattribute.- Returns:
- the at attribute
-
setAt
public void setAt(java.lang.String string)
Sets the value of theatattribute.- Parameters:
string- the attribute value
-
getConfiguration
public Configuration getConfiguration()
Returns the configuration object.- Returns:
- the configuration
-
addConfiguration
public void addConfiguration(Configuration config)
Sets the configuration object. Note: Normally this method should be namedsetConfiguration(), but the nameaddConfiguration()is required by some of the digester rules.- Parameters:
config- the configuration to set
-
-