Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
Org.eclipse.higgins.configuration.common
(Redirected from Org.eclipse.higgsin.configuration.common)
{{#eclipseproject:technology.higgins|eclipse_custom_style.css}} This is a project to hold implementation code that can be used across different configurable components and configuration handlers. Currently, it only has a helper class that creates a factory object for a configurable component.
Contents
Plans
- No currently planned features.
Service
ConfigurableComponentFactoryHelper
public class ConfigurableComponentFactoryHelper
{
static public IConfigurableComponent
getSingletonFromFactory(final String factoryClassName)
throws Exception {...}
static public IConfigurableComponent
getFromFactory(final String factoryClassName)
throws Exception {...}
}
PropertyFileConfigurationHandler
- Implements IConfigurationHandler
- Reads property file (setConfigurationBase, setFileName)
- Map holds one entry per property
- Key and value are both strings
public class PropertyFileConfigurationHandler
{
//constructor #1: no file or directory set
public PropertyFileConfigurationHandler() {...}
//constructor #2: set file, but not dir
public PropertyFileConfigurationHandler(String fileName) {...}
//constructor #3: set directory and file
public PropertyFileConfigurationHandler(String configDir, String fileName) {...}
public java.util.Map getSettings() throws Exception {...}
public synchronized boolean configure(Map mapConfigurationSettings)
throws Exception {...}
public void setConfigurationBase(String dirName) {...}
public void setFileName(String fileName) {...}
}