Class ASimpleMVCPluginView<M extends IGUIPluginModel,C extends IGUIPluginController,N extends javafx.scene.Node>
- java.lang.Object
-
- ai.libs.jaicore.graphvisualizer.plugin.ASimpleMVCPluginView<M,C,N>
-
- All Implemented Interfaces:
IGUIPluginView
- Direct Known Subclasses:
SolutionPerformanceTimelinePluginView
public abstract class ASimpleMVCPluginView<M extends IGUIPluginModel,C extends IGUIPluginController,N extends javafx.scene.Node> extends java.lang.Object implements IGUIPluginView
-
-
Constructor Summary
Constructors Constructor Description ASimpleMVCPluginView(M model, N node)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidclear()CgetController()MgetModel()NgetNode()Gets the node that represents this viewvoidsetController(C controller)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface ai.libs.jaicore.graphvisualizer.plugin.IGUIPluginView
getTitle, update
-
-
-
-
Method Detail
-
getModel
public M getModel()
-
getController
public C getController()
-
setController
public void setController(C controller)
-
clear
public abstract void clear()
-
getNode
public N getNode()
Gets the node that represents this view- Specified by:
getNodein interfaceIGUIPluginView- Returns:
- The JavaFX Scene
Nodewhich will be displayed inside theAlgorithmVisualizationWindow
-
-