Package com.macrofocus.high_d.barchart
Class AbstractBarChart<Component,Color,Row,Column>
- java.lang.Object
-
- com.macrofocus.high_d.barchart.AbstractBarChart<Component,Color,Row,Column>
-
- All Implemented Interfaces:
BarChart<Component,Color,Row,Column>
- Direct Known Subclasses:
SwingBarChart
public abstract class AbstractBarChart<Component,Color,Row,Column> extends java.lang.Object implements BarChart<Component,Color,Row,Column>
-
-
Field Summary
Fields Modifier and Type Field Description protected BarChartController
controller
protected static LicenseModel
licenseModel
protected BarChartView<Component,Color,Row,Column>
view
-
Constructor Summary
Constructors Constructor Description AbstractBarChart(BarChartModel<Color,Row,Column> model)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract BarChartController
createController(BarChartView view)
Creates a controller that can be used by the parallel coordinates componentprotected abstract BarChartModel<Color,Row,Column>
createModel(com.macrofocus.molap.dataframe.DataFrame dataFrame)
Creates a model that can be used by the parallel coordinates componentprotected abstract BarChartView<Component,Color,Row,Column>
createView()
Creates a view that can be used by the parallel coordinates componentBarChartController
getController()
Returns the controller used by the parallel coordinates component.BarChartModel<Color,Row,Column>
getModel()
Returns the model used by the scatter plot component.BarChartView<Component,Color,Row,Column>
getView()
Returns the view used by the parallel coordinates component.protected void
load(com.macrofocus.molap.dataframe.DataFrame dataFrame)
Loads the specified data frame.void
setController(BarChartController controller)
Sets the controller to be used by the parallel coordinates component and register the view currently in use.static void
setLicenseKey(java.lang.String username, java.lang.String key)
Register the license key that legally entitle the use of BarChart.void
setModel(BarChartModel<Color,Row,Column> model)
Sets the model to be used for the scatter plot component and register it to the view.void
setView(BarChartView<Component,Color,Row,Column> view)
Sets the view to be used by the parallel coordinates component and register the model currently in use.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.macrofocus.high_d.barchart.BarChart
getNativeComponent
-
-
-
-
Field Detail
-
view
protected BarChartView<Component,Color,Row,Column> view
-
controller
protected BarChartController controller
-
licenseModel
protected static LicenseModel licenseModel
-
-
Constructor Detail
-
AbstractBarChart
public AbstractBarChart(BarChartModel<Color,Row,Column> model)
-
-
Method Detail
-
setLicenseKey
public static void setLicenseKey(java.lang.String username, java.lang.String key)
Register the license key that legally entitle the use of BarChart. This should be called prior to the first instantiation of this component.- Parameters:
username
- the user namekey
- the license key
-
load
protected void load(com.macrofocus.molap.dataframe.DataFrame dataFrame)
Loads the specified data frame.- Parameters:
dataFrame
- a data frame
-
getModel
public BarChartModel<Color,Row,Column> getModel()
Description copied from interface:BarChart
Returns the model used by the scatter plot component.
-
setModel
public void setModel(BarChartModel<Color,Row,Column> model)
Description copied from interface:BarChart
Sets the model to be used for the scatter plot component and register it to the view.
-
getView
public BarChartView<Component,Color,Row,Column> getView()
Description copied from interface:BarChart
Returns the view used by the parallel coordinates component.
-
setView
public void setView(BarChartView<Component,Color,Row,Column> view)
Description copied from interface:BarChart
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.
-
getController
public BarChartController getController()
Description copied from interface:BarChart
Returns the controller used by the parallel coordinates component.
-
setController
public void setController(BarChartController controller)
Description copied from interface:BarChart
Sets the controller to be used by the parallel coordinates component and register the view currently in use.
-
createModel
protected abstract BarChartModel<Color,Row,Column> createModel(com.macrofocus.molap.dataframe.DataFrame dataFrame)
Creates a model that can be used by the parallel coordinates component- Parameters:
dataFrame
- a Swing TableModel- Returns:
- a BarChartModel instance
-
createView
protected abstract BarChartView<Component,Color,Row,Column> createView()
Creates a view that can be used by the parallel coordinates component- Returns:
- a BarChartView instance
-
createController
protected abstract BarChartController createController(BarChartView view)
Creates a controller that can be used by the parallel coordinates component- Parameters:
view
- the view that should be controlled- Returns:
- a BarChartController instance
-
-