summaryrefslogtreecommitdiffstats
path: root/tests/bugs154/pr174449
diff options
context:
space:
mode:
authoraclement <aclement>2007-10-18 11:02:00 +0000
committeraclement <aclement>2007-10-18 11:02:00 +0000
commit499b8bcb0e89b39a63008fc68b44df9ed39d0750 (patch)
tree748080f3a5b8f4915cc5b1014bbac41ce4d8236f /tests/bugs154/pr174449
parent7d21be99acce64728f70e3f4b26bc5390a658672 (diff)
downloadaspectj-499b8bcb0e89b39a63008fc68b44df9ed39d0750.tar.gz
aspectj-499b8bcb0e89b39a63008fc68b44df9ed39d0750.zip
these tests are now for 1.5.4, not 1.6.0
Diffstat (limited to 'tests/bugs154/pr174449')
-rw-r--r--tests/bugs154/pr174449/Foo.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/bugs154/pr174449/Foo.java b/tests/bugs154/pr174449/Foo.java
new file mode 100644
index 000000000..68a400d7d
--- /dev/null
+++ b/tests/bugs154/pr174449/Foo.java
@@ -0,0 +1,33 @@
+abstract aspect Replicate<T> {
+
+ protected pointcut broadcast(T servant);
+
+ void around(T servant): broadcast(servant) {
+ System.err.println("around advice executing: servant class is "+servant.getClass());
+ proceed(servant);
+ }
+
+}
+
+aspect ReplicateConcreteB extends Replicate<Boo> {
+ protected pointcut broadcast(Boo servant) : call(* *.setScene(..)) && target(servant);
+}
+
+aspect ReplicateConcreteG extends Replicate<Goo> {
+ protected pointcut broadcast(Goo servant) : call(* *.setScene(..)) && target(servant);
+}
+
+public class Foo {
+ public static void main(String []argv) {
+ new Boo().setScene();
+ new Goo().setScene();
+ }
+}
+
+class Boo {
+ public void setScene() {}
+}
+
+class Goo {
+ public void setScene() {}
+}