...
The JobPlugin class and the PluginInterface are quite similar, see the StepLoader paragraph above for more information.
Examples from the field
Code Block |
---|
JobPlugin plugin = JobEntryLoader.getInstance().findJobPluginWithID(typeId);
|
becomes:
Code Block |
---|
PluginInterface plugin = PluginRegistry.getInstance().getPlugin(JobEntryPluginType.getInstance(), typeId);
|