package javaforce.webui; /** Point * * @author pquiring */ public class Point { public int x, y; public Point() {} public Point(int x,int y) { this.x = x; this.y = y; } }