blob: cd7edcded33487eb64d81c52a68918ad51137f35 [file] [log] [blame]
// some example
/**Cool this annotation!*/
public @interface ClassPreamble {
String author();
String date();
int currentRevision() default 1;
String lastModified() default "N/A";
String lastModifiedBy() default "N/A";
// Note use of array
String[] reviewers();
}