TP2: add class annotations.
[TP_POO.git] / TP2 / Point.java
index 5a591c6e03049979f35547329becc0bf246f1bd0..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)
          */
     }