aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs151/pr122370/moody/MainClass.java
blob: 82e4a953486c7107d71bc936ab0804bf56c102f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package moody;

public class MainClass {

	public static void main(String[] args) {
		AnnotationMoodImplementor ami0 = new AnnotationMoodImplementor();
		AnnotationMoodImplementor ami1 = new AnnotationMoodImplementor();

		System.out.println("ami0's mood is " + ((AnnotationMoodIndicator.Moody) ami0).getMood());
		((AnnotationMoodIndicator.Moody) ami1).setMood(Mood.JOLLY);
		System.out.println("ami1's mood is now " + ((AnnotationMoodIndicator.Moody) ami1).getMood());
		System.out.println("ami0's mood is still " + ((AnnotationMoodIndicator.Moody) ami0).getMood());
	}
	

	
}