Interface Distributions<Component,Color,Row,Column,Value,Bin>
-
- All Known Implementing Classes:
AbstractDistributions
,SwingDistributions
public interface Distributions<Component,Color,Row,Column,Value,Bin>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DistributionsController
getController()
Returns the controller used by the parallel coordinates component.DistributionsModel<Color,Row,Column,Value,Bin>
getModel()
Returns the model used by the parallel coordinates component.Component
getNativeComponent()
DistributionsView<Component,Color,Row,Column,Value,Bin>
getView()
Returns the view used by the parallel coordinates component.void
setController(DistributionsController controller)
Sets the controller to be used by the parallel coordinates component and register the view currently in use.void
setModel(DistributionsModel<Color,Row,Column,Value,Bin> model)
Sets the model to be used for the parallel coordinates component and register it to the view.void
setView(DistributionsView<Component,Color,Row,Column,Value,Bin> view)
Sets the view to be used by the parallel coordinates component and register the model currently in use.
-
-
-
Method Detail
-
getModel
DistributionsModel<Color,Row,Column,Value,Bin> getModel()
Returns the model used by the parallel coordinates component.- Returns:
- the model in use
-
setModel
void setModel(DistributionsModel<Color,Row,Column,Value,Bin> model)
Sets the model to be used for the parallel coordinates component and register it to the view.- Parameters:
model
- the model to be used
-
getView
DistributionsView<Component,Color,Row,Column,Value,Bin> getView()
Returns the view used by the parallel coordinates component.- Returns:
- the view in use
-
setView
void setView(DistributionsView<Component,Color,Row,Column,Value,Bin> 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
DistributionsController getController()
Returns the controller used by the parallel coordinates component.- Returns:
- the controller in use
-
setController
void setController(DistributionsController 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()
-
-