org.jfree.data.xy

Class AbstractIntervalXYDataset

public abstract class AbstractIntervalXYDataset extends AbstractXYDataset implements IntervalXYDataset

An base class that you can use to create new implementations of the IntervalXYDataset interface.
Method Summary
doublegetEndXValue(int series, int item)
Returns the end x-value (as a double primitive) for an item within a series.
doublegetEndYValue(int series, int item)
Returns the end y-value (as a double primitive) for an item within a series.
doublegetStartXValue(int series, int item)
Returns the start x-value (as a double primitive) for an item within a series.
doublegetStartYValue(int series, int item)
Returns the start y-value (as a double primitive) for an item within a series.

Method Detail

getEndXValue

public double getEndXValue(int series, int item)
Returns the end x-value (as a double primitive) for an item within a series.

Parameters: series the series index (zero-based). item the item index (zero-based).

Returns: The value.

getEndYValue

public double getEndYValue(int series, int item)
Returns the end y-value (as a double primitive) for an item within a series.

Parameters: series the series (zero-based index). item the item (zero-based index).

Returns: The value.

getStartXValue

public double getStartXValue(int series, int item)
Returns the start x-value (as a double primitive) for an item within a series.

Parameters: series the series index (zero-based). item the item index (zero-based).

Returns: The value.

getStartYValue

public double getStartYValue(int series, int item)
Returns the start y-value (as a double primitive) for an item within a series.

Parameters: series the series index (zero-based). item the item index (zero-based).

Returns: The value.

Copyright © 2000-2009 by Object Refinery Limited. All Rights Reserved.