Skip to main content

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.

Jump to: navigation, search

Difference between revisions of "Org.eclipse.higgins.configuration.common"

Line 1: Line 1:
 
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.
 
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.
 +
 +
== Details ==
 +
* Status: Available M0.8
 +
* Language: Java
 +
* Packaging: JAR
 +
 +
== Plans ==
 +
* No currently planned features.
 +
 +
== Service ==
 +
 +
=== ConfigurableComponentFactoryHelper ===
 +
 +
<code><pre>
 +
public class ConfigurableComponentFactoryHelper
 +
{
 +
  static public IConfigurableComponent
 +
        getSingletonFromFactory(final String factoryClassName)
 +
throws Exception {...}
 +
 +
  static public IConfigurableComponent
 +
        getFromFactory(final String factoryClassName)
 +
throws Exception {...}
 +
}
 +
</pre></code>
 +
  
 
== Links ==   
 
== Links ==   
Line 5: Line 31:
 
** [[Architecture]]   
 
** [[Architecture]]   
 
** [[Components]]
 
** [[Components]]
 +
*** [[Configuration API]]

Revision as of 14:10, 7 June 2007

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.

Details

  • Status: Available M0.8
  • Language: Java
  • Packaging: JAR

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 {...}
}


Links

Back to the top