aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-testing/src/test/resources/com/github/javaparser/lexical_preservation_samples/AnnotationDeclaration_Example1_expected.java.txt
blob: 33545c2cce9195dfaf1e30b8d99f4bf20c2ecc59 (plain)
1
2
3
4
5
6
7
8
9
10
11
// some example

@interface NewName {
   String author();
   String date();
   int currentRevision() default 1;
   String lastModified() default "N/A";
   String lastModifiedBy() default "N/A";
   // Note use of array
   String[] reviewers();
}