Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.apt.pluggable.tests/resources/targets/bug387956/Generate.java')
-rw-r--r--org.eclipse.jdt.apt.pluggable.tests/resources/targets/bug387956/Generate.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/org.eclipse.jdt.apt.pluggable.tests/resources/targets/bug387956/Generate.java b/org.eclipse.jdt.apt.pluggable.tests/resources/targets/bug387956/Generate.java
new file mode 100644
index 0000000000..1fae923cbb
--- /dev/null
+++ b/org.eclipse.jdt.apt.pluggable.tests/resources/targets/bug387956/Generate.java
@@ -0,0 +1,15 @@
+package targets.bug387956;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/**
+ * Used on a type "SomeType", generates a new empty class named
+ * "generated.GeneratedSomeType"
+ */
+@Retention(RetentionPolicy.SOURCE)
+@Target(ElementType.TYPE)
+public @interface Generate {
+}

Back to the top