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,org.api4.java.common.control.ILoggingCustomizable
- Direct Known Subclasses:
ControlBarGUIPluginView,GraphViewPluginView,NodeInfoGUIPluginView,SolutionPerformanceTimelinePluginView,SpeedSliderGUIPluginView,TimeSliderGUIPluginView
public abstract class ASimpleMVCPluginView<M extends IGUIPluginModel,C extends IGUIPluginController,N extends javafx.scene.Node> extends java.lang.Object implements IGUIPluginView, org.api4.java.common.control.ILoggingCustomizable
-
-
Field Summary
Fields Modifier and Type Field Description protected org.slf4j.Loggerlogger
-
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()java.lang.StringgetLoggerName()MgetModel()NgetNode()Gets the node that represents this viewvoidsetController(C controller)voidsetLoggerName(java.lang.String name)-
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
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
-
getLoggerName
public java.lang.String getLoggerName()
- Specified by:
getLoggerNamein interfaceorg.api4.java.common.control.ILoggingCustomizable
-
setLoggerName
public void setLoggerName(java.lang.String name)
- Specified by:
setLoggerNamein interfaceorg.api4.java.common.control.ILoggingCustomizable
-
-