| java.lang.Object net.myvietnam.mvncore.configuration.AbstractConfiguration net.myvietnam.mvncore.configuration.HierarchicalConfiguration net.myvietnam.mvncore.configuration.HierarchicalDOM4JConfiguration
HierarchicalDOM4JConfiguration | public class HierarchicalDOM4JConfiguration extends HierarchicalConfiguration implements BasePathLoader(Code) | | A specialized hierarchical configuration class that is able to parse
XML documents using DOM4J.
The parsed document will be stored keeping its structure. The
contained properties can be accessed using all methods supported by
the base class HierarchicalProperties .
author: Oliver Heger version: $Id: HierarchicalDOM4JConfiguration.java,v 1.1 2003/12/09 08:25:30 huumai Exp $ |
Method Summary | |
public String | getBasePath() Returns the base path. | public String | getFileName() Returns the name of the file to be parsed by this object. | public void | initProperties(Document document) Initializes this configuration from an XML document. | public void | load() Loads and parses an XML document. | public void | load(URL url) Loads and parses the specified XML document. | public void | setBasePath(String path) Allows to set a base path. | public void | setFileName(String file) Sets the name of the file to be parsed by this object. |
HierarchicalDOM4JConfiguration | public HierarchicalDOM4JConfiguration()(Code) | | Creates a new instance of HierarchicalDOM4JConfiguration .
|
HierarchicalDOM4JConfiguration | public HierarchicalDOM4JConfiguration(Configuration defaults)(Code) | | Creates a new instance of HierarchicalDOM4JConfiguration
and sets the default properties.
Parameters: defaults - the default properties |
getBasePath | public String getBasePath()(Code) | | Returns the base path.
the base path |
getFileName | public String getFileName()(Code) | | Returns the name of the file to be parsed by this object.
the file to be parsed |
initProperties | public void initProperties(Document document)(Code) | | Initializes this configuration from an XML document.
Parameters: document - the document to be parsed |
load | public void load() throws Exception(Code) | | Loads and parses an XML document. The file to be loaded must have
been specified before.
throws: Exception - if an error occurs |
load | public void load(URL url) throws Exception(Code) | | Loads and parses the specified XML document.
Parameters: url - the URL to the XML document throws: Exception - if an error occurs |
setBasePath | public void setBasePath(String path)(Code) | | Allows to set a base path. Relative file names are resolved based on
this path.
Parameters: path - the base path; this can be a URL or a file path |
setFileName | public void setFileName(String file)(Code) | | Sets the name of the file to be parsed by this object.
Parameters: file - the file to be parsed |
Methods inherited from net.myvietnam.mvncore.configuration.AbstractConfiguration | public void addProperty(String key, Object token)(Code)(Java Doc) abstract protected void addPropertyDirect(String key, Object obj)(Code)(Java Doc) abstract public void clearProperty(String key)(Code)(Java Doc) abstract public boolean containsKey(String key)(Code)(Java Doc) public boolean getBoolean(String key)(Code)(Java Doc) public boolean getBoolean(String key, boolean defaultValue)(Code)(Java Doc) public Boolean getBoolean(String key, Boolean defaultValue)(Code)(Java Doc) public byte getByte(String key)(Code)(Java Doc) public byte getByte(String key, byte defaultValue)(Code)(Java Doc) public Byte getByte(String key, Byte defaultValue)(Code)(Java Doc) public double getDouble(String key)(Code)(Java Doc) public double getDouble(String key, double defaultValue)(Code)(Java Doc) public Double getDouble(String key, Double defaultValue)(Code)(Java Doc) public float getFloat(String key)(Code)(Java Doc) public float getFloat(String key, float defaultValue)(Code)(Java Doc) public Float getFloat(String key, Float defaultValue)(Code)(Java Doc) public int getInt(String key)(Code)(Java Doc) public int getInt(String key, int defaultValue)(Code)(Java Doc) public Integer getInteger(String key, Integer defaultValue)(Code)(Java Doc) abstract public Iterator getKeys()(Code)(Java Doc) public Iterator getKeys(String prefix)(Code)(Java Doc) public long getLong(String key)(Code)(Java Doc) public long getLong(String key, long defaultValue)(Code)(Java Doc) public Long getLong(String key, Long defaultValue)(Code)(Java Doc) public Properties getProperties(String key)(Code)(Java Doc) public Properties getProperties(String key, Properties defaults)(Code)(Java Doc) public Object getProperty(String key)(Code)(Java Doc) abstract protected Object getPropertyDirect(String key)(Code)(Java Doc) public short getShort(String key)(Code)(Java Doc) public short getShort(String key, short defaultValue)(Code)(Java Doc) public Short getShort(String key, Short defaultValue)(Code)(Java Doc) public String getString(String key)(Code)(Java Doc) public String getString(String key, String defaultValue)(Code)(Java Doc) public String[] getStringArray(String key)(Code)(Java Doc) public Vector getVector(String key)(Code)(Java Doc) public Vector getVector(String key, Vector defaultValue)(Code)(Java Doc) protected String interpolate(String base)(Code)(Java Doc) protected String interpolateHelper(String base, List priorVariables)(Code)(Java Doc) abstract public boolean isEmpty()(Code)(Java Doc) protected List processString(String token)(Code)(Java Doc) public void setProperty(String key, Object value)(Code)(Java Doc) public Configuration subset(String prefix)(Code)(Java Doc) final protected Boolean testBoolean(String value)(Code)(Java Doc)
|
|
|