summaryrefslogtreecommitdiffstats
path: root/ajdoc/testdata/coverage/foo/ClassA.java
blob: 097f4a281c58d1f7a9b6d1ff7559c4d46b08c579 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
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() { }
}