Class ASimpleMVCPluginModel<V extends ASimpleMVCPluginView<?,?,?>,C extends ASimpleMVCPluginController<?,?>>
- java.lang.Object
-
- ai.libs.jaicore.graphvisualizer.plugin.ASimpleMVCPluginModel<V,C>
-
- All Implemented Interfaces:
IGUIPluginModel,org.api4.java.common.control.ILoggingCustomizable
- Direct Known Subclasses:
ControlBarGUIPluginModel,GraphViewPluginModel,NodeInfoGUIPluginModel,SolutionPerformanceTimelinePluginModel,SpeedSliderGUIPluginModel,TimeSliderGUIPluginModel
public abstract class ASimpleMVCPluginModel<V extends ASimpleMVCPluginView<?,?,?>,C extends ASimpleMVCPluginController<?,?>> extends java.lang.Object implements IGUIPluginModel, org.api4.java.common.control.ILoggingCustomizable
-
-
Constructor Summary
Constructors Constructor Description ASimpleMVCPluginModel()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidclear()CgetController()java.lang.StringgetLoggerName()VgetView()voidsetController(C controller)voidsetLoggerName(java.lang.String name)voidsetView(V view)
-
-
-
Method Detail
-
setView
public void setView(V view)
-
getView
public V getView()
-
getController
public C getController()
-
setController
public void setController(C controller)
-
clear
public abstract void clear()
-
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
-
-