Interface ScatterPlotMatrix<Component,Color,Row,Column>
-
- All Known Implementing Classes:
AbstractScatterPlotMatrix
,SwingScatterPlotMatrix
public interface ScatterPlotMatrix<Component,Color,Row,Column>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScatterPlotMatrixController
getController()
Returns the controller used by the parallel coordinates component.ScatterPlotMatrixModel
getModel()
Returns the model used by the scatter plot component.Component
getNativeComponent()
ScatterPlotMatrixView<Component,Color,Row,Column>
getView()
Returns the view used by the parallel coordinates component.void
setController(ScatterPlotMatrixController controller)
Sets the controller to be used by the parallel coordinates component and register the view currently in use.void
setModel(ScatterPlotMatrixModel model)
Sets the model to be used for the scatter plot component and register it to the view.void
setView(ScatterPlotMatrixView<Component,Color,Row,Column> view)
Sets the view to be used by the parallel coordinates component and register the model currently in use.
-
-
-
Method Detail
-
getModel
ScatterPlotMatrixModel getModel()
Returns the model used by the scatter plot component.- Returns:
- the model in use
-
setModel
void setModel(ScatterPlotMatrixModel model)
Sets the model to be used for the scatter plot component and register it to the view.- Parameters:
model
- the model to be used
-
getView
ScatterPlotMatrixView<Component,Color,Row,Column> getView()
Returns the view used by the parallel coordinates component.- Returns:
- the view in use
-
setView
void setView(ScatterPlotMatrixView<Component,Color,Row,Column> view)
Sets the view to be used by the parallel coordinates component and register the model currently in use. It will also register itself to the controller.- Parameters:
view
- the view to be used
-
getController
ScatterPlotMatrixController getController()
Returns the controller used by the parallel coordinates component.- Returns:
- the controller in use
-
setController
void setController(ScatterPlotMatrixController controller)
Sets the controller to be used by the parallel coordinates component and register the view currently in use.- Parameters:
controller
- the controller in use
-
getNativeComponent
Component getNativeComponent()
-
-