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 that return ConfigurationHelper
protected  ConfigurationHelper XmlPlainMappingBinding.doParseConfigurationHelper(InputStream is, String resourceName)
           
protected  ConfigurationHelper XmlMetaDataBinding.doParseConfigurationHelper(InputStream is, String resourceName)
           
protected  ConfigurationHelper JsonPlainMappingBinding.doParseConfigurationHelper(InputStream is, String resourceName)
           
protected  ConfigurationHelper JsonMetaDataBinding.doParseConfigurationHelper(InputStream is, String resourceName)
           
protected abstract  ConfigurationHelper AbstractConfigurationHelperMappingBinding.doParseConfigurationHelper(InputStream is, String resourceName)
           
 

Methods in org.compass.core.config.binding with parameters of type ConfigurationHelper
protected  boolean PlainMappingBinding.doAddConfiguration(ConfigurationHelper doc)
           
 boolean MetaDataBinding.doAddConfiguration(ConfigurationHelper doc)
           
protected abstract  boolean AbstractConfigurationHelperMappingBinding.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 PlainConfigurationHelper
          This is the default ConfigurationHelper implementation.
 

Fields in org.compass.core.util.config declared as ConfigurationHelper
protected static ConfigurationHelper[] PlainConfigurationHelper.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 JsonConfigurationHelperBuilder.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 JsonConfigurationHelperBuilder.build(Reader reader, String systemId)
           
 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 JsonConfigurationHelperBuilder.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 JsonConfigurationHelperBuilder.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 PlainConfigurationHelper.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[] PlainConfigurationHelper.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[] PlainConfigurationHelper.getChildren(String... names)
           
 ConfigurationHelper[] ConfigurationHelper.getChildren(String... names)
           
 ConfigurationHelper[] PlainConfigurationHelper.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 PlainConfigurationHelper.addAll(ConfigurationHelper other)
          Add all the attributes, children and value from specified configuration element to current configuration element.
 void PlainConfigurationHelper.addAllAttributes(ConfigurationHelper other)
          Add all attributes from specified configuration element to current configuration element.
 void PlainConfigurationHelper.addAllChildren(ConfigurationHelper other)
          Add all child Configuration objects from specified configuration element to current configuration element.
 void PlainConfigurationHelper.addAllChildrenBefore(ConfigurationHelper other)
          Add all child Configuration objects from specified configuration element to current configuration element.
 void PlainConfigurationHelper.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 PlainConfigurationHelper.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.
 



Copyright (c) 2004-2008 The Compass Project.