| Revision: | 1.1 |
| Committed: | Sat Feb 3 14:56:14 2001 UTC (24 years, 10 months ago) by pjm2 |
| Branch: | MAIN |
| Log Message: | A rewrite of the database reporting tools. These reflect the new way in which the database stores the original XML rather than parameter and value pairs. |
| # | Content |
|---|---|
| 1 | public class PairData { |
| 2 | |
| 3 | public PairData(double x, double y) { |
| 4 | _x = x; |
| 5 | _y = y; |
| 6 | } |
| 7 | |
| 8 | public double getX() { |
| 9 | return _x; |
| 10 | } |
| 11 | |
| 12 | public double getY() { |
| 13 | return _y; |
| 14 | } |
| 15 | |
| 16 | public void setPair(double x, double y) { |
| 17 | _x = x; |
| 18 | _y = y; |
| 19 | } |
| 20 | |
| 21 | private double _x; |
| 22 | private double _y; |
| 23 | |
| 24 | } |