org.aspectj/tests/bugs/lazyTjpXLintWarning/LazyTjpTest4.java
2005-11-01 21:55:21 +00:00

23 lines
490 B
Java

public class LazyTjpTest4 {
public void test1 () { }
private static aspect Aspect1 {
private static boolean enabled = true;
after () : if(enabled) && execution(public void LazyTjpTest4.test1()) {
System.out.println(thisJoinPoint);
}
before() : execution(public void LazyTjpTest4.test1()) {
System.out.println(thisJoinPoint);
}
before() : execution(public void LazyTjpTest4.test1()) {
System.out.println(thisJoinPoint);
}
}
}