Package pulse.ui.components
Class AuxPlotter<T>
- java.lang.Object
-
- pulse.ui.components.AuxPlotter<T>
-
- Direct Known Subclasses:
LogChart
,PulseChart
,ResidualsChart
public abstract class AuxPlotter<T> extends Object
-
-
Constructor Summary
Constructors Constructor Description AuxPlotter()
AuxPlotter(String xLabel, String yLabel)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description org.jfree.chart.JFreeChart
getChart()
org.jfree.chart.ChartPanel
getChartPanel()
org.jfree.chart.plot.XYPlot
getPlot()
abstract void
plot(T t)
void
setChart(org.jfree.chart.JFreeChart chart)
void
setFonts()
void
setPlot(org.jfree.chart.plot.XYPlot plot)
-
-
-
Method Detail
-
setFonts
public final void setFonts()
-
plot
public abstract void plot(T t)
-
getChartPanel
public final org.jfree.chart.ChartPanel getChartPanel()
-
getChart
public final org.jfree.chart.JFreeChart getChart()
-
getPlot
public final org.jfree.chart.plot.XYPlot getPlot()
-
setPlot
public final void setPlot(org.jfree.chart.plot.XYPlot plot)
-
setChart
public final void setChart(org.jfree.chart.JFreeChart chart)
-
-