blob: f4212e97c547bde23345a00eb0b2543dc2ab6dcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
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());
}
}
|