diff options
author | wisberg <wisberg> | 2002-12-16 18:51:06 +0000 |
---|---|---|
committer | wisberg <wisberg> | 2002-12-16 18:51:06 +0000 |
commit | 144143c2970a1e874d74cdbd0f8c622d4282a3c3 (patch) | |
tree | b12383d3d9e76c7e1f25f7fbec83051ef17f81fb /tests/base/test109/Foo.java | |
parent | fafae443719b26159ab2d7dac1c9b46b5e00b671 (diff) | |
download | aspectj-144143c2970a1e874d74cdbd0f8c622d4282a3c3.tar.gz aspectj-144143c2970a1e874d74cdbd0f8c622d4282a3c3.zip |
initial version
Diffstat (limited to 'tests/base/test109/Foo.java')
-rw-r--r-- | tests/base/test109/Foo.java | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/base/test109/Foo.java b/tests/base/test109/Foo.java new file mode 100644 index 000000000..8a2a3de38 --- /dev/null +++ b/tests/base/test109/Foo.java @@ -0,0 +1,56 @@ + +public class Foo { + private String _name; + private static final int PRIVATECONST = 1; + private static int privateClassVar = 2; + private int privateInstanceVar = 3; + + protected static int protectedClassVar = 4; + protected int protectedInstanceVar = 5; + + public static int publicClassVar = 6; + public int publicInstanceVar = 7; + + public static int ClassVar = 8; + public int InstanceVar = 9; + + public void foo() { + // System.out.println("running " + this + ".foo()"); + } + + private static void privateClassMethod() { + // System.out.println("in " + "Foo.privateClassMethod()"); + } + + private void privateInstanceMethod() { + // System.out.println("in " + this + ".privateInstanceMethod()"); + } + + protected static void protectedClassMethod() { + // System.out.println("in " + "Foo.protectedClassMethod()"); + } + + protected void protectedInstanceMethod() { + // System.out.println("in " + this + ".protectedInstanceMethod()"); + } + + public static void publicClassMethod() { + // System.out.println("in " + "Foo.publicClassMethod()"); + } + + public void publicInstanceMethod() { + // System.out.println("in " + this + ".publicInstanceMethod()"); + } + + static void ClassMethod() { + // System.out.println("in " + "Foo.ClassMethod()"); + } + + void InstanceMethod() { + // System.out.println("in " + this + ".InstanceMethod()"); + } + + +} + + |