org.ow2.jasmine.monitoring.mbeancmd.graph
Interface SerieListener

All Known Implementing Classes:
Graph

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

update

void update(java.lang.String serie,
            long x,
            long y)
Updates the series data by adding a point.

Parameters:
serie - Name of the series.
x - Abscissa of the new point.
y - Ordinate of the new point.

update

void update(java.lang.String serie,
            long x,
            double y)
Updates the series data by adding a point.

Parameters:
serie - Name of the series.
x - Abscissa of the new point.
y - Ordinate of the new point.

update

void update(java.lang.String serie,
            double x,
            long y)
Updates the series data by adding a point.

Parameters:
serie - Name of the series.
x - Abscissa of the new point.
y - Ordinate of the new point.

update

void update(java.lang.String serie,
            double x,
            double y)
Updates the series data by adding a point.

Parameters:
serie - Name of the series.
x - Abscissa of the new point.
y - Ordinate of the new point.