SORTIE Java Interface
1
|
Copied from HistogramBin in JFreeChart by Jelai Wang with some modifications. More...
Public Member Functions | |
float | getCount () |
Returns the number of items in the bin. More... | |
void | setCount (float fCount) |
Sets the number of items in the bin. More... | |
void | incrementCount () |
Increments the item count. More... | |
float | getStartBoundary () |
Returns the start boundary. More... | |
float | getEndBoundary () |
Returns the end boundary. More... | |
float | getBinWidth () |
Returns the bin width. More... | |
Private Attributes | |
float | m_fCount = 0 |
The number of items in the bin. More... | |
float | m_fStartBoundary |
The start boundary. More... | |
float | m_fEndBoundary |
The end boundary. More... | |
Copied from HistogramBin in JFreeChart by Jelai Wang with some modifications.
Copyright: Copyright (c) Charles D. Canham 2003
Company: Cary Institute of Ecosystem Studies
Edit history:
---------------—
April 28, 2004: Submitted in beta version (LEM)
June 28, 2004: Made the count a float (LEM)
float sortie.datavisualizer.HistogramBin.getBinWidth | ( | ) |
Returns the bin width.
float sortie.datavisualizer.HistogramBin.getCount | ( | ) |
Returns the number of items in the bin.
float sortie.datavisualizer.HistogramBin.getEndBoundary | ( | ) |
Returns the end boundary.
float sortie.datavisualizer.HistogramBin.getStartBoundary | ( | ) |
Returns the start boundary.
void sortie.datavisualizer.HistogramBin.incrementCount | ( | ) |
Increments the item count.
void sortie.datavisualizer.HistogramBin.setCount | ( | float | fCount | ) |
Sets the number of items in the bin.
Lora added this.
fCount | The item count. |
|
private |
The number of items in the bin.
|
private |
The end boundary.
|
private |
The start boundary.