public class YourPlugin
extends java.lang.Object
Constructor and Description |
---|
YourPlugin() |
Modifier and Type | Method and Description |
---|---|
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.
|
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.
|
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.
|
public YourOutput yourConfiguredPlugin(org.processmining.framework.plugin.PluginContext context, YourFirstInput input1, YourSecondInput input2, YourConfiguration configuration)
context
- The context to run in.input1
- The first input.input2
- The second input.configuration
- The configuration to use.public YourOutput yourDefaultPlugin(org.processmining.framework.plugin.PluginContext context, YourFirstInput input1, YourSecondInput input2)
context
- The context to run in.input1
- The first input.input2
- The second input.public YourOutput yourDefaultPlugin(org.processmining.contexts.uitopia.UIPluginContext context, YourFirstInput input1, YourSecondInput input2)
context
- The context to run in.input1
- The first input.input2
- The second input.