aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs151/atDecp/case4/MoodyImpl.java
diff options
context:
space:
mode:
authoraclement <aclement>2006-03-29 12:06:04 +0000
committeraclement <aclement>2006-03-29 12:06:04 +0000
commita2252d8b395f4da1e56bf77ea5d36e0c8d634ebd (patch)
tree2fe4505e5618d7f8217023e098ebc2924f7524ea /tests/bugs151/atDecp/case4/MoodyImpl.java
parente05ab26570eeb1776836d67e980c37e0813e30e3 (diff)
downloadaspectj-a2252d8b395f4da1e56bf77ea5d36e0c8d634ebd.tar.gz
aspectj-a2252d8b395f4da1e56bf77ea5d36e0c8d634ebd.zip
more tests for @DeclareParents - building it in pieces.
Diffstat (limited to 'tests/bugs151/atDecp/case4/MoodyImpl.java')
-rw-r--r--tests/bugs151/atDecp/case4/MoodyImpl.java10
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; }
+}