Create a generic Node class and make use of it.
[TP_POO.git] / TP2 / Point.java
index 049c6a20cb6b116fedc524cfee81843ae1e7f9ee..89382d521e57f9bc6479bc0006a69d9c10eaf961 100644 (file)
@@ -1,11 +1,15 @@
 
+@ClassPreamble (
+    author = "Jérôme Benoit",
+    date = "11/02/2012"
+)
 class Point {
     private double x;
     private double y;
 
     Point() {
         /*
-         *  FIXME: init to (0,0)?
+         * FIXME?: init to (0,0)
          */
     }