diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2011-08-31 10:29:34 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2011-08-31 10:29:34 +0000 |
commit | d72870bfb6b09927e10944bdd129ce18dfcf7366 (patch) | |
tree | 27f56e4d1523a8cecc8976df60155e6b8429e504 /src/test/test3/GetMethods.java | |
parent | 76a1cba9c433e8242bb6648e72b3ed43c7a4995a (diff) | |
download | javassist-d72870bfb6b09927e10944bdd129ce18dfcf7366.tar.gz javassist-d72870bfb6b09927e10944bdd129ce18dfcf7366.zip |
JvstTest test case.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@589 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'src/test/test3/GetMethods.java')
-rw-r--r-- | src/test/test3/GetMethods.java | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/test/test3/GetMethods.java b/src/test/test3/GetMethods.java new file mode 100644 index 00000000..69cc49fa --- /dev/null +++ b/src/test/test3/GetMethods.java @@ -0,0 +1,30 @@ +package test3; + +class SuperGetMethods { + public int f0; + protected double d0; + String s0; + private char c0; + + public void mpub0() {} + protected void mpro0() {} + void mpack0() {} + private void mpri0() {} +} + +public class GetMethods extends SuperGetMethods { + public GetMethods(int i) {} + protected GetMethods(String i, int j) {} + GetMethods() {} + private GetMethods(int i, int j) {} + + public int f; + protected double d; + String s; + private char c; + + public void mpub() {} + protected void mpro() {} + void mpack() {} + private void mpri() {} +} |