diff options
Diffstat (limited to 'ajdoc/testdata/simple/foo/ClassA.java')
-rw-r--r-- | ajdoc/testdata/simple/foo/ClassA.java | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/ajdoc/testdata/simple/foo/ClassA.java b/ajdoc/testdata/simple/foo/ClassA.java deleted file mode 100644 index 097f4a281..000000000 --- a/ajdoc/testdata/simple/foo/ClassA.java +++ /dev/null @@ -1,42 +0,0 @@ - -package foo; - -import java.io.IOException; - -/** - * Test class. This is a comment. - */ -public abstract class ClassA implements InterfaceI { - - /** - * Mumble field. - */ - public String mumble = "xxx"; - public int pubfield; - private String privfield = "mumble"; - - public IOException exception = new IOException() { - - public String getMumble() { return "mumble"; } - }; - - /** - * Mumbo. Jumbo. - * - * @param arg1 integer parameter - */ - void method1(int arg1) throws IOException { - pubfield = arg1; - } - - public void foo() { } - - static aspect InnerAspect { - String s; - } -} - -class SubClass extends ClassA { - - public void foo() { } -}
\ No newline at end of file |