summaryrefslogtreecommitdiffstats
path: root/bcel-builder/testdata/AnnotatedMethods.java
diff options
context:
space:
mode:
Diffstat (limited to 'bcel-builder/testdata/AnnotatedMethods.java')
-rw-r--r--bcel-builder/testdata/AnnotatedMethods.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/bcel-builder/testdata/AnnotatedMethods.java b/bcel-builder/testdata/AnnotatedMethods.java
new file mode 100644
index 000000000..ed1ff3c63
--- /dev/null
+++ b/bcel-builder/testdata/AnnotatedMethods.java
@@ -0,0 +1,10 @@
+public class AnnotatedMethods {
+
+ @SimpleAnnotation(id=1)
+ public void method1() {
+ }
+
+ @SimpleAnnotation(id=2)
+ public void method2() {
+ }
+}