Add a class premable.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 4 May 2018 09:43:03 +0000 (11:43 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 4 May 2018 09:43:03 +0000 (11:43 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
TP2/Node.java

index 782b7195670636b814a8c9be7b00112fbb389524..c2dc3101dda1265ee3f260cabc4d62ae38698abf 100644 (file)
@@ -1,3 +1,7 @@
+@ClassPreamble (
+    author = "Jérôme Benoit",
+    date = "09/11/2012"
+)
 public class Node<T> {
     private T data;
     private Node<T> next;