| |
|
| java.lang.Object org.jfree.base.config.HierarchicalConfiguration org.jfree.base.config.PropertyFileConfiguration
PropertyFileConfiguration | public class PropertyFileConfiguration extends HierarchicalConfiguration (Code) | | A report configuration that reads its values from an arbitary property file.
author: Thomas Morgner |
Method Summary | |
public void | load(String resourceName) Loads the properties stored in the given file. | public void | load(InputStream in) Loads the properties stored in the given file. |
PropertyFileConfiguration | public PropertyFileConfiguration()(Code) | | Default constructor.
|
load | public void load(String resourceName)(Code) | | Loads the properties stored in the given file. This method does nothing if
the file does not exist or is unreadable. Appends the contents of the loaded
properties to the already stored contents.
Parameters: resourceName - the file name of the stored properties. |
load | public void load(InputStream in)(Code) | | Loads the properties stored in the given file. This method does nothing if
the file does not exist or is unreadable. Appends the contents of the loaded
properties to the already stored contents.
Parameters: in - the input stream used to read the properties. |
|
|
|