1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.c2kernel.graph.model; import java.io.Serializable; public class GraphPoint implements Serializable{ public int x; public int y; public GraphPoint() { x=0; y=0; } public GraphPoint(int x, int y) { this.x = x; this.y = y; } }