Interface InductiveVisualMinerConfiguration
-
- All Superinterfaces:
ConfigurationWithDecorator
- All Known Implementing Classes:
InductiveVisualMinerConfigurationAbstract,InductiveVisualMinerConfigurationDefault,InductiveVisualMinerConfigurationFake
public interface InductiveVisualMinerConfiguration extends ConfigurationWithDecorator
Use this class to extend the visual Miner: - discovery techniques; - chain of computation steps, done out of the gui thread; - state keeps track of computation results - the gui panel- Author:
- sander
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AlignmentComputergetAlignmentComputer()DataChain<InductiveVisualMinerConfiguration>getChain()Set up the chain (DAG) of steps (chain links) that should be executed in the background and to update the gui.java.util.List<CostModelFactory>getCostModelFactories()java.util.List<DataAnalysisTab<?,InductiveVisualMinerConfiguration,InductiveVisualMinerPanel>>getDataAnalysisTables()java.util.List<VisualMinerWrapper>getDiscoveryTechniques()The list of available discovery techniques.VisualMinerWrapper[]getDiscoveryTechniquesArray()java.util.List<IvMExporter>getExporters()IvMFilterBuilderFactorygetFilters()The list of available filters.java.util.List<Mode>getModes()The list of available modes (arc colouring, which numbers to show on the model nodes, etc.)Mode[]getModesArray()InductiveVisualMinerPanelgetPanel()Set up the JComponent panel.java.util.List<PopupItemActivity>getPopupItemsActivity()The list of items that are shown in the pop-ups of activities.java.util.List<PopupItemLog>getPopupItemsLog()java.util.List<PopupItemLogMove>getPopupItemsLogMove()java.util.List<PopupItemModelMove>getPopupItemsModelMove()java.util.List<PopupItemStartEnd>getPopupItemsStartEnd()The list of items that are shown in the pop-ups of the start and end node.IvMVirtualAttributeFactorygetVirtualAttributes()-
Methods inherited from interface org.processmining.plugins.inductiveVisualMiner.configuration.ConfigurationWithDecorator
getDecorator
-
-
-
-
Method Detail
-
getDiscoveryTechniques
java.util.List<VisualMinerWrapper> getDiscoveryTechniques()
The list of available discovery techniques.- Returns:
-
getDiscoveryTechniquesArray
VisualMinerWrapper[] getDiscoveryTechniquesArray()
-
getFilters
IvMFilterBuilderFactory getFilters()
The list of available filters.- Returns:
-
getModes
java.util.List<Mode> getModes()
The list of available modes (arc colouring, which numbers to show on the model nodes, etc.)- Returns:
-
getModesArray
Mode[] getModesArray()
-
getPopupItemsActivity
java.util.List<PopupItemActivity> getPopupItemsActivity()
The list of items that are shown in the pop-ups of activities.- Returns:
-
getPopupItemsStartEnd
java.util.List<PopupItemStartEnd> getPopupItemsStartEnd()
The list of items that are shown in the pop-ups of the start and end node.- Returns:
-
getPopupItemsLogMove
java.util.List<PopupItemLogMove> getPopupItemsLogMove()
-
getPopupItemsModelMove
java.util.List<PopupItemModelMove> getPopupItemsModelMove()
-
getPopupItemsLog
java.util.List<PopupItemLog> getPopupItemsLog()
-
getDataAnalysisTables
java.util.List<DataAnalysisTab<?,InductiveVisualMinerConfiguration,InductiveVisualMinerPanel>> getDataAnalysisTables()
-
getVirtualAttributes
IvMVirtualAttributeFactory getVirtualAttributes()
-
getExporters
java.util.List<IvMExporter> getExporters()
-
getPanel
InductiveVisualMinerPanel getPanel()
Set up the JComponent panel.- Parameters:
context-state-discoveryTechniques-canceller-- Returns:
-
getChain
DataChain<InductiveVisualMinerConfiguration> getChain()
Set up the chain (DAG) of steps (chain links) that should be executed in the background and to update the gui.- Returns:
-
getAlignmentComputer
AlignmentComputer getAlignmentComputer()
-
getCostModelFactories
java.util.List<CostModelFactory> getCostModelFactories()
-
-