| 1 |
+ |
// Class Used to store details of each report type. |
| 2 |
|
public class Report { |
| 3 |
|
|
| 4 |
|
public Report(String reportField, String friendlyName) throws NumberFormatException { |
| 27 |
|
return _maxY > 0; |
| 28 |
|
} |
| 29 |
|
|
| 30 |
< |
public void setPlotData(PlotData plotData) { |
| 31 |
< |
_plotData = plotData; |
| 32 |
< |
} |
| 30 |
> |
//public void setPlotData(PlotData plotData) { |
| 31 |
> |
// _plotData = plotData; |
| 32 |
> |
//} |
| 33 |
|
|
| 34 |
< |
public PlotData getPlotData() { |
| 35 |
< |
return _plotData; |
| 36 |
< |
} |
| 34 |
> |
//public PlotData getPlotData() { |
| 35 |
> |
// return _plotData; |
| 36 |
> |
//} |
| 37 |
|
|
| 38 |
< |
public void clearPlotData() { |
| 39 |
< |
_plotData = null; |
| 40 |
< |
} |
| 38 |
> |
//public void clearPlotData() { |
| 39 |
> |
// _plotData = null; |
| 40 |
> |
//} |
| 41 |
|
|
| 42 |
|
private String _reportField; |
| 43 |
|
private String _friendlyName; |
| 44 |
|
private double _maxY; |
| 45 |
< |
private PlotData _plotData; |
| 45 |
> |
//private PlotData _plotData; |
| 46 |
|
} |