diff options
author | acolyer <acolyer> | 2005-08-04 13:19:20 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-08-04 13:19:20 +0000 |
commit | 7c1a5d72a8549771b076af20b4caff8e1da903bd (patch) | |
tree | e244898fdde502a4d60e0227bc4b8bfaa9fafe8f /weaver/testsrc/fluffy | |
parent | 951ca5082f6174c24772f06ca50de1b8f2c508c8 (diff) | |
download | aspectj-7c1a5d72a8549771b076af20b4caff8e1da903bd.tar.gz aspectj-7c1a5d72a8549771b076af20b4caff8e1da903bd.zip |
changed Member to be an interface with impl MemberImpl. changed ResolvedMember to be an interface with impl ResolvedMemberImpl
Diffstat (limited to 'weaver/testsrc/fluffy')
-rw-r--r-- | weaver/testsrc/fluffy/Base.java | 3 | ||||
-rw-r--r-- | weaver/testsrc/fluffy/Derived.java | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/weaver/testsrc/fluffy/Base.java b/weaver/testsrc/fluffy/Base.java index 9aa148d68..4cdb1f772 100644 --- a/weaver/testsrc/fluffy/Base.java +++ b/weaver/testsrc/fluffy/Base.java @@ -4,6 +4,9 @@ public class Base { public static void onlyBase() {} public static void both() {} + + public void onlyBaseNonStatic() {} + public void bothNonStatic() {} public int onlyBase; public int both; diff --git a/weaver/testsrc/fluffy/Derived.java b/weaver/testsrc/fluffy/Derived.java index 6c38db40e..ad0842c18 100644 --- a/weaver/testsrc/fluffy/Derived.java +++ b/weaver/testsrc/fluffy/Derived.java @@ -7,6 +7,9 @@ public class Derived extends Base { public static void onlyDerived() throws IOException, CloneNotSupportedException {} public static void both() {} + public void onlyDerivedNonStatic() {} + public void bothNonStatic() {} + public int onlyDerived; public int both; |