Class YourPlugin


  • public class YourPlugin
    extends java.lang.Object
    • Constructor Detail

      • YourPlugin

        public YourPlugin()
    • Method Detail

      • 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.