Code cleanup : fix C style array declaration.
[Project_POO.git] / exo4 / ClassPreamble.java
CommitLineData
2b29b63e 1import java.lang.annotation.Documented;
80eafbcb
JB
2import java.lang.annotation.Retention;
3import java.lang.annotation.RetentionPolicy;
2b29b63e 4
80eafbcb 5@Retention(RetentionPolicy.RUNTIME)
2b29b63e
JB
6@Documented
7public @interface ClassPreamble {
8 String author();
9 String date();
10 int currentRevision() default 1;
11 String lastModified() default "N/A";
12 String lastModifiedBy() default "N/A";
13}