aboutsummaryrefslogtreecommitdiffstats
path: root/weaver/testsrc/fluffy
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-08-04 13:19:20 +0000
committeracolyer <acolyer>2005-08-04 13:19:20 +0000
commit7c1a5d72a8549771b076af20b4caff8e1da903bd (patch)
treee244898fdde502a4d60e0227bc4b8bfaa9fafe8f /weaver/testsrc/fluffy
parent951ca5082f6174c24772f06ca50de1b8f2c508c8 (diff)
downloadaspectj-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.java3
-rw-r--r--weaver/testsrc/fluffy/Derived.java3
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;