Interface IGUIPluginView
-
- All Known Implementing Classes:
ASimpleMVCPluginView,ControlBarGUIPluginView,GraphViewPluginView,NodeInfoGUIPluginView,SolutionPerformanceTimelinePluginView,SpeedSliderGUIPluginView,TimeSliderGUIPluginView
public interface IGUIPluginViewAnIGUIPluginViewis part of anIGUIPluginand is responsible displaying the information stored in theIGUIPluginModel.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javafx.scene.NodegetNode()Returns the JavaFX SceneNodewhich will be displayed inside theAlgorithmVisualizationWindow.java.lang.StringgetTitle()Returns the title of the view of the associatedIGUIPlugin.voidupdate()Requests this view to update itself, i.e. pull the latest information from the associatedIGUIPluginModeland display it.
-
-
-
Method Detail
-
getNode
javafx.scene.Node getNode()
Returns the JavaFX SceneNodewhich will be displayed inside theAlgorithmVisualizationWindow.- Returns:
- The JavaFX Scene
Nodewhich will be displayed inside theAlgorithmVisualizationWindow
-
update
void update()
Requests this view to update itself, i.e. pull the latest information from the associatedIGUIPluginModeland display it.
-
getTitle
java.lang.String getTitle()
Returns the title of the view of the associatedIGUIPlugin.- Returns:
- The title of the view of the associated
IGUIPlugin.
-
-