aboutsummaryrefslogtreecommitdiffstats
path: root/ajde/testdata/inheritance
diff options
context:
space:
mode:
authoraclement <aclement>2007-01-15 09:37:56 +0000
committeraclement <aclement>2007-01-15 09:37:56 +0000
commitbaa2728b4aaf49ac680e0e19aab9db5b26516dbc (patch)
tree0afbfd41ea4558a99a4335012884ac1ec8263326 /ajde/testdata/inheritance
parent0684161295e935428bb584d67197b49151219cc5 (diff)
downloadaspectj-baa2728b4aaf49ac680e0e19aab9db5b26516dbc.tar.gz
aspectj-baa2728b4aaf49ac680e0e19aab9db5b26516dbc.zip
148190#35
Diffstat (limited to 'ajde/testdata/inheritance')
-rw-r--r--ajde/testdata/inheritance/.cvsignore1
-rw-r--r--ajde/testdata/inheritance/A.java22
-rw-r--r--ajde/testdata/inheritance/inheritance.lst1
3 files changed, 24 insertions, 0 deletions
diff --git a/ajde/testdata/inheritance/.cvsignore b/ajde/testdata/inheritance/.cvsignore
new file mode 100644
index 000000000..a5f90a68e
--- /dev/null
+++ b/ajde/testdata/inheritance/.cvsignore
@@ -0,0 +1 @@
+inheritance.ajsym
diff --git a/ajde/testdata/inheritance/A.java b/ajde/testdata/inheritance/A.java
new file mode 100644
index 000000000..899b409f0
--- /dev/null
+++ b/ajde/testdata/inheritance/A.java
@@ -0,0 +1,22 @@
+
+package inheritance;
+
+public abstract class A {
+
+ public abstract void bar();
+
+ public void foo() { }
+
+ public String toString() {
+ // mumble
+
+ return "";
+ }
+}
+
+class B extends A {
+
+ public void bar() { }
+
+ public void foo() { }
+}
diff --git a/ajde/testdata/inheritance/inheritance.lst b/ajde/testdata/inheritance/inheritance.lst
new file mode 100644
index 000000000..cf4be8246
--- /dev/null
+++ b/ajde/testdata/inheritance/inheritance.lst
@@ -0,0 +1 @@
+A.java