public interface TypeGraphicsHandlerFactory
This interface must be derived by a custom plugin class in order to implement
type painting features.
A custom class implementing
A custom class implementing
TypeGraphicsHandlerFactory
can be registered at the Omix Plugin Manager:<TypeGraphicsHandlerFactory>mypackage.MyTypeGraphicsHandlerFactory</TypeGraphicsHandlerFactory>
- Since:
- 1.3.11
- Author:
- Dr. Peter Droste, Omix Visualization
-
Method Summary
Modifier and Type Method Description TypeGraphicsHandlerInterface
newTypeGraphicsHandler()
This method is called by the plugin manager at startup and when the plugin is installed, respectively.
-
Method Details
-
newTypeGraphicsHandler
TypeGraphicsHandlerInterface newTypeGraphicsHandler()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 TypePaintHandler.
The custom implementation of this method must instantiate an arbitrary class implementing the interfaceTypeGraphicsHandlerInterface
.- Returns:
- an instance of
TypeGraphicsHandlerInterface
-