Class GoalDrivenConfigurationAbstract
- java.lang.Object
-
- org.processmining.goaldrivenprocessmining.algorithms.GoalDrivenConfigurationAbstract
-
- All Implemented Interfaces:
GoalDrivenConfiguration
- Direct Known Subclasses:
GoalDrivenConfigurationDefault
public abstract class GoalDrivenConfigurationAbstract extends java.lang.Object implements GoalDrivenConfiguration
IvM configuration that contains the chainlink. To extend, please use the InductiveVisualMinerConfigurationDefault class. This one is not guaranteed to be stable.- Author:
- sander
-
-
Constructor Summary
Constructors Constructor Description GoalDrivenConfigurationAbstract(org.processmining.framework.plugin.ProMCanceller canceller, java.util.concurrent.Executor executor)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract org.processmining.plugins.inductiveVisualMiner.chain.DataChain<GoalDrivenConfiguration>createChain(GoalDrivenPanel panel, org.processmining.framework.plugin.ProMCanceller canceller, java.util.concurrent.Executor executor)protected abstract GoalDrivenPanelcreatePanel(org.processmining.framework.plugin.ProMCanceller canceller)org.processmining.plugins.inductiveVisualMiner.chain.DataChain<GoalDrivenConfiguration>getChain()Set up the chain (DAG) of steps (chain links) that should be executed in the background and to update the gui.GoalDrivenPanelgetPanel()
-
-
-
Method Detail
-
createPanel
protected abstract GoalDrivenPanel createPanel(org.processmining.framework.plugin.ProMCanceller canceller)
-
createChain
protected abstract org.processmining.plugins.inductiveVisualMiner.chain.DataChain<GoalDrivenConfiguration> createChain(GoalDrivenPanel panel, org.processmining.framework.plugin.ProMCanceller canceller, java.util.concurrent.Executor executor)
-
getChain
public final org.processmining.plugins.inductiveVisualMiner.chain.DataChain<GoalDrivenConfiguration> getChain()
Description copied from interface:GoalDrivenConfigurationSet up the chain (DAG) of steps (chain links) that should be executed in the background and to update the gui.- Specified by:
getChainin interfaceGoalDrivenConfiguration- Returns:
-
getPanel
public final GoalDrivenPanel getPanel()
- Specified by:
getPanelin interfaceGoalDrivenConfiguration
-
-