|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Configuration | |
org.codehaus.dna | The DNA API package contains interfaces and contracts for DNA components. |
org.codehaus.dna.impl | The DNA implementation package contains basic utility classes to implement containers for DNA components. |
Uses of Configuration in org.codehaus.dna |
Methods in org.codehaus.dna that return Configuration | |
Configuration[] |
Configuration.getChildren()
Return an array of all the child elements. |
Configuration[] |
Configuration.getChildren(java.lang.String name)
Return an array of all the child elements with specified name. |
Configuration |
Configuration.getChild(java.lang.String name)
Return a child Configuration element with specified name. |
Configuration |
Configuration.getChild(java.lang.String name,
boolean createChild)
Return a child Configuration element with specified name. |
Methods in org.codehaus.dna with parameters of type Configuration | |
void |
Configurable.configure(Configuration configuration)
Supply the component with configuration data in form of a Configuration object. |
Uses of Configuration in org.codehaus.dna.impl |
Classes in org.codehaus.dna.impl that implement Configuration | |
class |
DefaultConfiguration
In memory Configuration implementation. |
Methods in org.codehaus.dna.impl that return Configuration | |
Configuration |
SAXConfigurationHandler.getConfiguration()
Return the configuration created by handler. |
static Configuration |
ConfigurationUtil.buildFromXML(org.xml.sax.InputSource input)
Create a configuration object from specified XML InputSource. |
static Configuration |
ConfigurationUtil.toConfiguration(org.w3c.dom.Element element)
Convert specified Element into a configuration object. |
Configuration[] |
DefaultConfiguration.getChildren()
Return an array of all the child elements. |
Configuration[] |
DefaultConfiguration.getChildren(java.lang.String name)
Return an array of all the child elements with specified name. |
Configuration |
DefaultConfiguration.getChild(java.lang.String name)
Return a child Configuration element with specified name. |
Configuration |
DefaultConfiguration.getChild(java.lang.String name,
boolean createChild)
Return a child Configuration element with specified name. |
Methods in org.codehaus.dna.impl with parameters of type Configuration | |
static void |
ContainerUtil.configure(java.lang.Object object,
Configuration configuration)
Supply specified object with Configuration if it implements the Configurable interface. |
void |
SAXConfigurationSerializer.serialize(Configuration configuration,
org.xml.sax.ContentHandler handler)
Serialize the configuration to as a Document to the specified ContentHandler. |
protected java.lang.String |
SAXConfigurationHandler.processAttributeText(Configuration configuration,
java.lang.String name,
java.lang.String value)
Users may subclass this method to process attribute prior to it being set. |
protected java.lang.String |
SAXConfigurationHandler.processValueText(Configuration configuration,
java.lang.String value)
Users may subclass this method to process content prior to it being set. |
static void |
ConfigurationUtil.serializeToResult(javax.xml.transform.Result result,
Configuration configuration)
Serialize Configuration object to sepcified Result object. |
static org.w3c.dom.Element |
ConfigurationUtil.toElement(Configuration configuration)
Convert specified Configuration object into a Element. |
static boolean |
ConfigurationUtil.equals(Configuration configuration1,
Configuration configuration2)
Test if two configuration objects are equal. |
void |
DefaultConfiguration.addChild(Configuration configuration)
Add a child configuration element. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |