public interface TypeEditHandlerFactory
This interface must be derived by a custom plugin class in order to implement
type editing features.
A custom class implementing
A custom class implementing
TypeEditHandlerFactory
can be registered at the Omix Plugin Manager:<TypeEditHandlerFactory>mypackage.MyTypeEditHandlerFactory</TypeEditHandlerFactory>
- Since:
- Omix 1.3.11
- Author:
- Dr. Peter Droste, Omix Visualization
-
Method Summary
Modifier and Type Method Description TypeEditHandlerInterface
newTypeEditHandler()
This method is called by the Plugin Manager at startup and when the plugin is installed, respectively.
-
Method Details
-
newTypeEditHandler
TypeEditHandlerInterface newTypeEditHandler()This method is called by the Plugin Manager at startup and when the plugin is installed, respectively. The role of this method is to create the TypeEditHandler.
The custom implementation of this method must instantiate an arbitrary class implementing the interfaceTypeEditHandlerInterface
.- Returns:
- an instance of
TypeEditHandlerInterface
-