--- /dev/null
+package theapp;
+
+import org.aspectj.lang.annotation.Aspect;
+import org.aspectj.lang.annotation.DeclareParents;
+
+import moody.*;
+
+class AnnotationMoodImplementor { }
+
+@Aspect
+class AnnotationMoodIndicator {
+
+ public static class MoodyImpl implements Moody {
+ private Mood mood = Mood.HAPPY;
+
+ public Mood getMood() { return mood; }
+ public void setMood(Mood mood) { this.mood = mood; }
+ }
+
+ @DeclareParents(value="theapp.AnnotationMoodImplementor",defaultImpl=MoodyImpl.class)
+ private Moody implementedInterface;
+}
+
+
+
+public class MainClass {
+ public static void main(String[] args) {
+ AnnotationMoodImplementor ami0 = new AnnotationMoodImplementor();
+ AnnotationMoodImplementor ami1 = new AnnotationMoodImplementor();
+
+ System.err.println("ami0's mood is " + ((Moody) ami0).getMood());
+ ((Moody) ami1).setMood(Mood.JOLLY);
+ System.err.println("ami1's mood is now " + ((Moody) ami1).getMood());
+ System.err.println("ami0's mood is still " + ((Moody) ami0).getMood());
+ }
+}
+
--- /dev/null
+package moody;
+
+public enum Mood { HAPPY, SAD, JOLLY, GRUMPY }
--- /dev/null
+package moody;
+
+public interface Moody {
+ Mood getMood();
+ void setMood(Mood mood);
+}
--- /dev/null
+package theapp;
+
+public class AnnotationMoodImplementor {}
--- /dev/null
+package theapp;
+
+import org.aspectj.lang.annotation.Aspect;
+import org.aspectj.lang.annotation.DeclareParents;
+
+import moody.*;
+
+public class MainClass {
+ public static void main(String[] args) {
+ AnnotationMoodImplementor ami0 = new AnnotationMoodImplementor();
+ AnnotationMoodImplementor ami1 = new AnnotationMoodImplementor();
+
+ System.err.println("ami0's mood is " + ((Moody) ami0).getMood());
+ ((Moody) ami1).setMood(Mood.JOLLY);
+ System.err.println("ami1's mood is now " + ((Moody) ami1).getMood());
+ System.err.println("ami0's mood is still " + ((Moody) ami0).getMood());
+ }
+}
+
--- /dev/null
+package moody;
+
+public enum Mood { HAPPY, SAD, JOLLY, GRUMPY }
--- /dev/null
+package moody;
+
+public interface Moody {
+ Mood getMood();
+ void setMood(Mood mood);
+}
--- /dev/null
+package theapp;
+
+import moody.*;
+
+public class MoodyImpl implements Moody {
+ private Mood mood = Mood.HAPPY;
+
+ public Mood getMood() { return mood; }
+ public void setMood(Mood mood) { this.mood = mood; }
+}
--- /dev/null
+package theapp;
+
+import org.aspectj.lang.annotation.Aspect;
+import org.aspectj.lang.annotation.DeclareParents;
+
+import moody.Moody;
+
+@Aspect
+class AnnotationMoodIndicator {
+ @DeclareParents(value="theapp.AnnotationMoodImplementor",defaultImpl=MoodyImpl.class)
+ private Moody implementedInterface;
+}
+
// Some @DeclareParents testing
public void testAtDecp_1() { runTest("atDecp - simple");}
public void testAtDecp_2() { runTest("atDecp - annotation");}
+ public void testAtDecp_3() { runTest("atDecp - binary interface");}
+ public void testAtDecp_4() { runTest("atDecp - binary interface - 2");}
public void testAnnotationsAndItds_pr98901() { runTest("annotations and itds");}
public void testAnnotationsAndItds_pr98901_2() { runTest("annotations and itds - 2");}
</run>
</ajc-test>
+ <!-- when interface is binary -->
+ <ajc-test dir="bugs151/atDecp/case3" title="atDecp - binary interface">
+ <compile files="Mood.java,Moody.java" outjar="moody.jar" options="-1.5"/>
+ <compile files="MainClass.java" classpath="moody.jar" options="-1.5 -showWeaveInfo">
+ <message kind="weave" text="Extending interface set for type 'theapp.AnnotationMoodImplementor' (MainClass.java) to include 'moody.Moody' (MainClass.java)"/>
+ <message kind="weave" text="Type 'theapp.AnnotationMoodImplementor' (MainClass.java) has intertyped method from 'theapp.AnnotationMoodIndicator' (MainClass.java:'moody.Mood moody.Moody.getMood()')"/>
+ <message kind="weave" text="Type 'theapp.AnnotationMoodImplementor' (MainClass.java) has intertyped method from 'theapp.AnnotationMoodIndicator' (MainClass.java:'void moody.Moody.setMood(moody.Mood)')"/>
+ </compile>
+ <run class="theapp.MainClass">
+ <stderr>
+ <line text="ami0's mood is HAPPY"/>
+ <line text="ami1's mood is now JOLLY"/>
+ <line text="ami0's mood is still HAPPY"/>
+ </stderr>
+ </run>
+ </ajc-test>
+
+ <!-- when interface is binary and implementation is not an inner -->
+ <ajc-test dir="bugs151/atDecp/case4" title="atDecp - binary interface - 2">
+ <compile files="Mood.java,Moody.java" outjar="moody.jar" options="-1.5"/>
+ <compile files="MainClass.java,AnnotationMoodImplementor.java,TheAspect.java,MoodyImpl.java" classpath="moody.jar" options="-1.5 -showWeaveInfo">
+ <message kind="weave" text="Extending interface set for type 'theapp.AnnotationMoodImplementor' (AnnotationMoodImplementor.java) to include 'moody.Moody' (TheAspect.java)"/>
+ <message kind="weave" text="Type 'theapp.AnnotationMoodImplementor' (AnnotationMoodImplementor.java) has intertyped method from 'theapp.AnnotationMoodIndicator' (TheAspect.java:'moody.Mood moody.Moody.getMood()')"/>
+ <message kind="weave" text="Type 'theapp.AnnotationMoodImplementor' (AnnotationMoodImplementor.java) has intertyped method from 'theapp.AnnotationMoodIndicator' (TheAspect.java:'void moody.Moody.setMood(moody.Mood)')"/>
+ </compile>
+ <run class="theapp.MainClass">
+ <stderr>
+ <line text="ami0's mood is HAPPY"/>
+ <line text="ami1's mood is now JOLLY"/>
+ <line text="ami0's mood is still HAPPY"/>
+ </stderr>
+ </run>
+ </ajc-test>
<!-- atDecp end -->