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