Package org.jfree.data
Class XYDataPair
java.lang.Object
org.jfree.data.XYDataItem
org.jfree.data.XYDataPair
- All Implemented Interfaces:
- Serializable,- Cloneable,- Comparable
public class XYDataPair extends XYDataItem
Deprecated.
Represents one (x, y) data item for an xy-series.
- See Also:
- Serialized Form
- 
Constructor SummaryConstructors Constructor Description XYDataPair(double x, double y)Deprecated.Constructs a new data pair.XYDataPair(Number x, Number y)Deprecated.Constructs a new data pair.
- 
Method Summary
- 
Constructor Details- 
XYDataPairDeprecated.Constructs a new data pair.- Parameters:
- x- the x-value.
- y- the y-value.
 
- 
XYDataPairpublic XYDataPair(double x, double y)Deprecated.Constructs a new data pair.- Parameters:
- x- the x-value.
- y- the y-value.
 
 
- 
XYDataItem.