| java.lang.Object | ||
| ↳ | com.pnfsoftware.jeb.core.AbstractPlugin | |
| ↳ | com.pnfsoftware.jeb.core.AbstractEnginesPlugin | |
Known Direct Subclasses
|
Skeleton implementation for an engines plugin. It is recommended plugins
extend this class (or one of the its subclasses) instead of implementing IEnginesPlugin.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| AbstractEnginesPlugin() | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| void |
execute(IEnginesContext context)
Same as
execute(context, null). | ||||||||||
| List<? extends IOptionDefinition> |
getExecutionOptionDefinitions()
Retrieve a list of option definitions.
| ||||||||||
| void |
load(IEnginesContext context)
Load the plugin.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.pnfsoftware.jeb.core.AbstractPlugin
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
com.pnfsoftware.jeb.core.IEnginesPlugin
| |||||||||||
From interface
com.pnfsoftware.jeb.core.IPlugin
| |||||||||||
Same as execute(context, null).
| context | the context in which this plugin executes (never null) |
|---|
Retrieve a list of option definitions.
Load the plugin. This method is called by the owner context exactly
once, just after the engines plugin instantiation.
| context | the context in which this plugin executes (never null) |
|---|