Class YourAlgorithm
- java.lang.Object
-
- org.processmining.stochasticbpmn.algorithms.YourAlgorithm
-
public class YourAlgorithm extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description YourAlgorithm()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StochasticBpmnapply(org.processmining.framework.plugin.PluginContext context, YourFirstInput input1, YourSecondInput input2, YourParameters parameters)The method that implements your algorithm.
-
-
-
Method Detail
-
apply
public StochasticBpmn apply(org.processmining.framework.plugin.PluginContext context, YourFirstInput input1, YourSecondInput input2, YourParameters parameters)
The method that implements your algorithm. Note that this method only uses the boolean which is stored in the parameters. Nevertheless, it could have used the integer and/or the String as well.- Parameters:
context- The context where to run in.input1- The first input.input2- The second input.parameters- The parameters to use.- Returns:
- The output.
-
-