--- /dev/null
+public class A_yes {
+ @CacheMethodResult
+ public void m() {
+ System.out.println("A_yes.m()");
+ Class[] itfs = A_yes.class.getInterfaces();
+ System.out.println("A_yes has interface? "+((itfs==null||itfs.length==0)?"no":itfs[0].getName()));
+ }
+}
--- /dev/null
+class B_no {
+ public void m() {
+ System.out.println("B_no.m()");
+ Class[] itfs = B_no.class.getInterfaces();
+ System.out.println("B_no has interface? "+((itfs==null||itfs.length==0)?"no":itfs[0].getName()));
+ }
+}
--- /dev/null
+import java.lang.annotation.*;
+
+@Retention(RetentionPolicy.RUNTIME)
+@interface CacheMethodResult {}
--- /dev/null
+aspect CacheMethodResultAspect perthis(cache()) {
+
+ pointcut cache() : execution(@CacheMethodResult * *.*(..));
+
+ Object around() : cache() {
+ System.out.println("around: "+thisJoinPointStaticPart.getSignature());
+ return proceed();
+ }
+}
+
--- /dev/null
+public class Run {
+ public static void main(String []argv) {
+ new A_yes().m();
+ new B_no().m();
+ }
+}
--- /dev/null
+<!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd">
+<aspectj>
+ <weaver>
+ </weaver>
+
+ <aspects>
+ <aspect name="CacheMethodResultAspect" />
+ </aspects>
+
+</aspectj>
*/
public class Ajc1810Tests extends org.aspectj.testing.XMLBasedAjcTestCase {
+ public void testBinding_508661() {
+ runTest("various ltw");
+ }
+
public void testBinding_500035() {
runTest("ataspectj binding");
}
<suite>
+ <ajc-test dir="bugs1810/508661" title="various ltw">
+ <compile options="-1.8" files="CacheMethodResult.java A_yes.java B_no.java Run.java" outjar="classes.jar"/>
+ <compile options="-1.8 -Xlint:ignore" files="CacheMethodResultAspect.java" outjar="aspects.jar"/>
+ <run class="Run" ltw="aop.xml">
+ <stdout>
+ <line text="around: void A_yes.m()"/>
+ <line text="A_yes.m()"/>
+ <line text="A_yes has interface? CacheMethodResultAspect$ajcMightHaveAspect"/>
+ <line text="B_no.m()"/>
+ <line text="B_no has interface? no"/>
+ </stdout>
+ </run>
+ </ajc-test>
+
<ajc-test dir="bugs1810/500035" title="ataspectj binding">
<compile options="-1.8" files="Code.java"/>
<run class="Code">