Uses of Interface
org.compass.core.util.config.ConfigurationHelper

Packages that use ConfigurationHelper
org.compass.core.config.binding   
org.compass.core.util.config   
 

Uses of ConfigurationHelper in org.compass.core.config.binding
 

Methods in org.compass.core.config.binding with parameters of type ConfigurationHelper
 boolean XmlMetaDataBinding.doAddConfiguration(ConfigurationHelper doc)
           
protected  boolean XmlMappingBinding.doAddConfiguration(ConfigurationHelper doc)
           
protected abstract  boolean AbstractXmlMappingBinding.doAddConfiguration(ConfigurationHelper conf)
           
 

Uses of ConfigurationHelper in org.compass.core.util.config
 

Classes in org.compass.core.util.config that implement ConfigurationHelper
 class AbstractConfigurationHelper
          This is an abstract Configuration implementation that deals with methods that can be abstracted away from underlying implementations.
 class XmlConfigurationHelper
          This is the default ConfigurationHelper implementation.
 

Fields in org.compass.core.util.config declared as ConfigurationHelper
protected static ConfigurationHelper[] XmlConfigurationHelper.EMPTY_ARRAY
          An empty (length zero) array of configuration objects.
 

Methods in org.compass.core.util.config that return ConfigurationHelper
 ConfigurationHelper XmlConfigurationHelperBuilder.build(InputSource input)
          Build a configuration object using an XML InputSource object
 ConfigurationHelper XmlConfigurationHelperBuilder.build(InputStream inputStream, String systemId)
          Build a configuration object using an InputStream; supplying a systemId to make messages about all kinds of errors more meaningfull.
 ConfigurationHelper XmlConfigurationHelperBuilder.build(String uri)
          Build a configuration object using an URI
 ConfigurationHelper XmlConfigurationHelperBuilder.buildFromFile(File file)
          Build a configuration object from a file using a File object.
 ConfigurationHelper XmlConfigurationHelperBuilder.buildFromFile(String filename)
          Build a configuration object from a file using a filename.
 ConfigurationHelper ConfigurationHelper.getChild(String child)
          Return a new Configuration instance encapsulating the specified child node.
 ConfigurationHelper AbstractConfigurationHelper.getChild(String name)
          Return the first Configuration object child of this associated with the given name.
 ConfigurationHelper XmlConfigurationHelper.getChild(String name, boolean createNew)
          Return the first Configuration object child of this associated with the given name.
 ConfigurationHelper ConfigurationHelper.getChild(String child, boolean createNew)
          Return a Configuration instance encapsulating the specified child node.
 ConfigurationHelper AbstractConfigurationHelper.getChild(String name, boolean createNew)
          Return the first Configuration object child of this associated with the given name.
 ConfigurationHelper[] XmlConfigurationHelper.getChildren()
          Return an array of Configuration elements containing all node children.
 ConfigurationHelper[] ConfigurationHelper.getChildren()
          Return an Array of Configuration elements containing all node children.
 ConfigurationHelper[] XmlConfigurationHelper.getChildren(String name)
          Return an array of Configuration objects children of this associated with the given name.
 ConfigurationHelper[] ConfigurationHelper.getChildren(String name)
          Return an Array of Configuration elements containing all node children with the specified name.
 ConfigurationHelper SAXConfigurationHandler.getConfiguration()
          Get the configuration object that was built.
 ConfigurationHelper NamespacedSAXConfigurationHandler.getConfiguration()
          Get the configuration object that was built.
static ConfigurationHelper ConfigurationHelperUtil.toConfiguration(Element element)
          Convert a DOM Element tree into a configuration tree.
 

Methods in org.compass.core.util.config with parameters of type ConfigurationHelper
 void XmlConfigurationHelper.addAll(ConfigurationHelper other)
          Add all the attributes, children and value from specified configuration element to current configuration element.
 void XmlConfigurationHelper.addAllAttributes(ConfigurationHelper other)
          Add all attributes from specified configuration element to current configuration element.
 void XmlConfigurationHelper.addAllChildren(ConfigurationHelper other)
          Add all child Configuration objects from specified configuration element to current configuration element.
 void XmlConfigurationHelper.addAllChildrenBefore(ConfigurationHelper other)
          Add all child Configuration objects from specified configuration element to current configuration element.
 void ConfigurationHelper.addAllChildrenBefore(ConfigurationHelper other)
          Add all child Configuration objects from specified configuration element to current configuration element.
 void XmlConfigurationHelper.addChild(ConfigurationHelper configuration)
          Add a child Configuration to this configuration element.
static boolean ConfigurationHelperUtil.equals(ConfigurationHelper c1, ConfigurationHelper c2)
          Test to see if two Configuration's can be considered the same.
 void XmlConfigurationHelper.removeChild(ConfigurationHelper configuration)
          Remove a child Configuration to this configuration element.
static Element ConfigurationHelperUtil.toElement(ConfigurationHelper configuration)
          Convert a configuration tree into a DOM Element tree.
 

Constructors in org.compass.core.util.config with parameters of type ConfigurationHelper
XmlConfigurationHelper(ConfigurationHelper config)
          Shallow copy constructor, suitable for craeting a writable clone of a read-only configuration.
 



Copyright (c) 2004-2008 The Compass Project.