cfc3eafab9c8cec0dce67b04df3cf4aa1c083de0
[IRC.git] / Robust / src / Benchmarks / SSJava / EyeTracking / Point.java
1 public class Point {
2
3   public int x;
4   public int y;
5
6   public Point(int x, int y) {
7     this.x = x;
8     this.y = y;
9   }
10
11   public Point() {
12   }
13
14 }