aboutsummaryrefslogtreecommitdiff
path: root/javaparser-testing/src/test/resources/com/github/javaparser/lexical_preservation_samples/AnnotationDeclaration_Example8_expected.java.txt
diff options
context:
space:
mode:
Diffstat (limited to 'javaparser-testing/src/test/resources/com/github/javaparser/lexical_preservation_samples/AnnotationDeclaration_Example8_expected.java.txt')
-rw-r--r--javaparser-testing/src/test/resources/com/github/javaparser/lexical_preservation_samples/AnnotationDeclaration_Example8_expected.java.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/javaparser-testing/src/test/resources/com/github/javaparser/lexical_preservation_samples/AnnotationDeclaration_Example8_expected.java.txt b/javaparser-testing/src/test/resources/com/github/javaparser/lexical_preservation_samples/AnnotationDeclaration_Example8_expected.java.txt
new file mode 100644
index 000000000..2a5fd934f
--- /dev/null
+++ b/javaparser-testing/src/test/resources/com/github/javaparser/lexical_preservation_samples/AnnotationDeclaration_Example8_expected.java.txt
@@ -0,0 +1,12 @@
+// 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();
+} \ No newline at end of file