Class PutIntoSidePanel
java.lang.Object
org.graffiti.plugin.algorithm.AbstractAlgorithm
org.graffiti.plugin.algorithm.AbstractEditorAlgorithm
de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.dbe.AbstractExperimentDataProcessor
de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.dbe.PutIntoSidePanel
- All Implemented Interfaces:
ExperimentDataProcessor,UndoableEdit,Algorithm,EditorAlgorithm
public class PutIntoSidePanel extends AbstractExperimentDataProcessor
- Author:
- klukas
-
Constructor Summary
Constructors Constructor Description PutIntoSidePanel() -
Method Summary
Modifier and Type Method Description booleanactiveForView(View v)ImageIcongetIcon()Returns the icon of the algorithm (used, e.g.StringgetName()Returns the name (ID) of the algorithm.Set<Category>getSetCategory()Returns a set of categories to classify this algorithm .voidprocessData()voidsetComponent(JComponent optSupplementaryPanel)voidsetExperimentData(ExperimentInterface md)Perform data mapping (or something else).Methods inherited from class de.ipk_gatersleben.ag_nw.graffiti.plugins.gui.layout_control.dbe.AbstractExperimentDataProcessor
addPostProcessor, execute, getAnnotations, removePostProcessorMethods inherited from class org.graffiti.plugin.algorithm.AbstractEditorAlgorithm
getParameterDialog, getShortNameMethods inherited from class org.graffiti.plugin.algorithm.AbstractAlgorithm
addEdit, attach, canRedo, canUndo, check, die, doesUndo, getAcceleratorKeyStroke, getActionEvent, getCategory, getDescription, getMenuCategory, getParameters, getPresentationName, getRedoPresentationName, getUndoPresentationName, isAlwaysExecutable, isLayoutAlgorithm, isSignificant, markExecutionDone, markRedoDone, markUndoDone, mayWorkOnMultipleGraphs, redo, replaceEdit, reset, setActionEvent, setParameters, showMenuIcon, undoMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.graffiti.plugin.algorithm.Algorithm
attach, check, getAcceleratorKeyStroke, getActionEvent, getCategory, getDescription, getMenuCategory, getParameters, isLayoutAlgorithm, mayWorkOnMultipleGraphs, reset, setActionEvent, setParameters, showMenuIcon
-
Constructor Details
-
PutIntoSidePanel
public PutIntoSidePanel()
-
-
Method Details
-
getName
Description copied from interface:AlgorithmReturns the name (ID) of the algorithm.- Returns:
- DOCUMENT ME!
-
processData
public void processData() -
activeForView
-
setExperimentData
Description copied from interface:ExperimentDataProcessorPerform data mapping (or something else).- Specified by:
setExperimentDatain interfaceExperimentDataProcessor- Specified by:
setExperimentDatain classAbstractExperimentDataProcessor- Parameters:
md- Experiment data (XML)
-
setComponent
- Specified by:
setComponentin interfaceExperimentDataProcessor- Overrides:
setComponentin classAbstractExperimentDataProcessor
-
getIcon
Description copied from class:AbstractEditorAlgorithmReturns the icon of the algorithm (used, e.g. in the menu bar). Icon is only shown if showMenuIcon returns true.- Specified by:
getIconin interfaceEditorAlgorithm- Overrides:
getIconin classAbstractEditorAlgorithm- Returns:
- The icon of the algorithm or null if the plugin icon should be used.
-
getSetCategory
Description copied from interface:AlgorithmReturns a set of categories to classify this algorithm . e.g. return new HashSet(Arrays.asList( Category.GRAPH, Category.NODE )); is an algorithm, working on graphs and more specific on nodes - Specified by:
getSetCategoryin interfaceAlgorithm- Overrides:
getSetCategoryin classAbstractAlgorithm- Returns:
- Set of Category Enums that classify this algorithm.
-