All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface JSci.awt.CategoryGraph2DModel

public interface CategoryGraph2DModel
This is a generic interface for sending data to 2D category graphs.


Method Index

 o addGraphDataListener(GraphDataListener)
Add a listener.
 o firstSeries()
Selects the first data series.
 o getCategory(int)
Returns the ith category.
 o getValue(int)
Returns the value for the ith category.
 o nextSeries()
Selects the next data series.
 o removeGraphDataListener(GraphDataListener)
Remove a listener.
 o seriesLength()
Returns the length of the current series.

Methods

 o addGraphDataListener
 public abstract void addGraphDataListener(GraphDataListener l)
Add a listener.

 o removeGraphDataListener
 public abstract void removeGraphDataListener(GraphDataListener l)
Remove a listener.

 o getCategory
 public abstract String getCategory(int i)
Returns the ith category.

 o getValue
 public abstract float getValue(int i)
Returns the value for the ith category.

 o seriesLength
 public abstract int seriesLength()
Returns the length of the current series.

 o firstSeries
 public abstract void firstSeries()
Selects the first data series.

 o nextSeries
 public abstract boolean nextSeries()
Selects the next data series. Returns false if there is no next series.


All Packages  Class Hierarchy  This Package  Previous  Next  Index