org.processmining.plugins
Class YourPlugin
java.lang.Object
org.processmining.plugins.YourPlugin
public class YourPlugin
- extends java.lang.Object
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
YourPlugin
public YourPlugin()
yourConfiguredPlugin
public YourOutput yourConfiguredPlugin(org.processmining.framework.plugin.PluginContext context,
YourFirstInput input1,
YourSecondInput input2,
YourConfiguration configuration)
- The plug-in variant that runs in any context and requires a configuration.
- Parameters:
context - The context to run in.input1 - The first input.input2 - The second input.configuration - The configuration to use.
- Returns:
- The output.
yourDefaultPlugin
public YourOutput yourDefaultPlugin(org.processmining.framework.plugin.PluginContext context,
YourFirstInput input1,
YourSecondInput input2)
- The plug-in variant that runs in any context and uses the default configuration.
- Parameters:
context - The context to run in.input1 - The first input.input2 - The second input.
- Returns:
- The output.
yourDefaultPlugin
public YourOutput yourDefaultPlugin(org.processmining.contexts.uitopia.UIPluginContext context,
YourFirstInput input1,
YourSecondInput input2)
- The plug-in variant that runs in a UI context and uses a dialog to get the configuration.
- Parameters:
context - The context to run in.input1 - The first input.input2 - The second input.
- Returns:
- The output.