Interface IDesignEngineFactory
-
- All Known Implementing Classes:
DesignEngineFactory
public interface IDesignEngineFactory
Factory class to create an instance of DesignEngine
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
EXTENSION_DESIGN_ENGINE_FACTORY
The extension point used to create the factory object.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IDesignEngine
createDesignEngine(DesignConfig config)
Creates a new design engine object.
-
-
-
Field Detail
-
EXTENSION_DESIGN_ENGINE_FACTORY
static final java.lang.String EXTENSION_DESIGN_ENGINE_FACTORY
The extension point used to create the factory object.- See Also:
Platform.createFactoryObject(String)
, Constant Field Values
-
-
Method Detail
-
createDesignEngine
IDesignEngine createDesignEngine(DesignConfig config)
Creates a new design engine object.- Parameters:
config
- the given design config- Returns:
- the design engine object
-
-