diff options
author | aclement <aclement> | 2006-02-21 15:55:33 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-02-21 15:55:33 +0000 |
commit | ba42a09551519a4b611ab06edb161ecb0c629f53 (patch) | |
tree | 2169f72dba31201d2c32fb6d39118c57e0869ef6 /tests/bugs151 | |
parent | 7a2087ef985e8af73045bac1e7e0195bb87c7f40 (diff) | |
download | aspectj-ba42a09551519a4b611ab06edb161ecb0c629f53.tar.gz aspectj-ba42a09551519a4b611ab06edb161ecb0c629f53.zip |
test and fix for 128237 from Helen
Diffstat (limited to 'tests/bugs151')
-rw-r--r-- | tests/bugs151/pr128237.java | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/bugs151/pr128237.java b/tests/bugs151/pr128237.java new file mode 100644 index 000000000..93af416c8 --- /dev/null +++ b/tests/bugs151/pr128237.java @@ -0,0 +1,29 @@ +import org.aspectj.lang.JoinPoint; +import org.aspectj.lang.annotation.Aspect; +import org.aspectj.lang.annotation.Before; +import org.aspectj.lang.annotation.Pointcut; + +@Aspect +class AbstractTracer +{ + + @Pointcut("(execution(public * Foo.anotherMethod*(..)) || execution(public * Foo.methodA(..))) && this(obj)") + protected void methodExec(Object obj){}; + + @Before("methodExec(obj)") + public void beforeMethodExec(JoinPoint thisJoinPoint, Object obj) { + System.out.println("Before " + thisJoinPoint.getSignature().toString()); + } + +} + + +class Foo { + + public void methodA() { + } + + public void anotherMethod() { + } + +} |