|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface SerieListener
Interface for any class that will receive series data.
Method Summary | |
---|---|
void |
update(java.lang.String serie,
double x,
double y)
Updates the series data by adding a point. |
void |
update(java.lang.String serie,
double x,
long y)
Updates the series data by adding a point. |
void |
update(java.lang.String serie,
long x,
double y)
Updates the series data by adding a point. |
void |
update(java.lang.String serie,
long x,
long y)
Updates the series data by adding a point. |
Method Detail |
---|
void update(java.lang.String serie, long x, long y)
serie
- Name of the series.x
- Abscissa of the new point.y
- Ordinate of the new point.void update(java.lang.String serie, long x, double y)
serie
- Name of the series.x
- Abscissa of the new point.y
- Ordinate of the new point.void update(java.lang.String serie, double x, long y)
serie
- Name of the series.x
- Abscissa of the new point.y
- Ordinate of the new point.void update(java.lang.String serie, double x, double y)
serie
- Name of the series.x
- Abscissa of the new point.y
- Ordinate of the new point.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |