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.JFreeChartgetChart()org.jfree.chart.ChartPanelgetChartPanel()org.jfree.chart.plot.XYPlotgetPlot()abstract voidplot(T t)voidsetChart(org.jfree.chart.JFreeChart chart)voidsetFonts()voidsetPlot(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)
-
-