Modifier and Type | Method and Description |
---|---|
YourOutput |
YourAlgorithm.apply(org.processmining.framework.plugin.PluginContext context,
YourFirstInput input1,
YourSecondInput input2,
YourParameters parameters)
The method that implements your algorithm.
|
Constructor and Description |
---|
YourConnection(YourFirstInput input1,
YourSecondInput input2,
YourOutput output,
YourParameters parameters)
Create a connection.
|
Constructor and Description |
---|
YourDialog(org.processmining.contexts.uitopia.UIPluginContext context,
YourFirstInput input1,
YourSecondInput input2,
YourParameters parameters)
The JPanel that allows the user to set (a subset of) the parameters.
|
Constructor and Description |
---|
YourOutput(YourFirstInput input) |
Constructor and Description |
---|
YourParameters(YourFirstInput input1,
YourSecondInput input2) |
Modifier and Type | Method and Description |
---|---|
YourOutput |
YourPlugin.run(org.processmining.framework.plugin.PluginContext context,
YourFirstInput input1,
YourSecondInput input2,
YourParameters parameters)
The plug-in variant that runs in any context and requires a parameters.
|
YourOutput |
YourPlugin.runDefault(org.processmining.framework.plugin.PluginContext context,
YourFirstInput input1,
YourSecondInput input2)
The plug-in variant that runs in any context and uses the default parameters.
|
YourOutput |
YourPlugin.runUI(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 parameters.
|