Commit | Line | Data |
---|---|---|
1 | import java.lang.annotation.Documented; | |
2 | import java.lang.annotation.Retention; | |
3 | import java.lang.annotation.RetentionPolicy; | |
4 | ||
5 | @Retention(RetentionPolicy.RUNTIME) | |
6 | @Documented | |
7 | public @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 | } |