diff options
Diffstat (limited to 'tests/bugs151/atDecp/case4/MoodyImpl.java')
-rw-r--r-- | tests/bugs151/atDecp/case4/MoodyImpl.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs151/atDecp/case4/MoodyImpl.java b/tests/bugs151/atDecp/case4/MoodyImpl.java new file mode 100644 index 000000000..01d926d98 --- /dev/null +++ b/tests/bugs151/atDecp/case4/MoodyImpl.java @@ -0,0 +1,10 @@ +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; } +} |