From 254ee6f47eebfc00462c10756a92066e82cc1a96 Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Tue, 21 Jun 2011 15:46:02 +0200 Subject: Initial commit --- source/com/c2kernel/graph/model/GraphPoint.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 source/com/c2kernel/graph/model/GraphPoint.java (limited to 'source/com/c2kernel/graph/model/GraphPoint.java') diff --git a/source/com/c2kernel/graph/model/GraphPoint.java b/source/com/c2kernel/graph/model/GraphPoint.java new file mode 100755 index 0000000..c1c6ccc --- /dev/null +++ b/source/com/c2kernel/graph/model/GraphPoint.java @@ -0,0 +1,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; + } +} -- cgit v1.2.3