aboutsummaryrefslogtreecommitdiffstats
path: root/ajdoc/testdata/simple/foo/ClassA.java
blob: 76bc4588eac91f5aff2a2c558d990c5dae78b20f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package foo;

import java.io.IOException;

/**
 * Test class.  This is a comment.
 */ 
public abstract class ClassA implements InterfaceI {
	
	public int pubfield;
	private int privfield;
	
	/**
	 * Mumbo. Jumbo. 
	 * 
	 * @param arg1  integer parameter
	 */ 
	void method1(int arg1) throws IOException { 
		pubfield = arg1;
	}
	
	public void foo() { }
}
 
class SubClass extends ClassA { 
	 
	public void foo() { }
}