KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > performance > generate > load > Measurement


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tctest.performance.generate.load;
5
6 public final class Measurement {
7
8   public final long x;
9   public final long y;
10
11   public Measurement(long x, long y) {
12     this.x = x;
13     this.y = y;
14   }
15   
16   public String JavaDoc toString() {
17     return "x=" + x + " y=" + y;
18   }
19 }
Popular Tags