blob: 1b357a788bfbab80c59da9035d888c992f8710ca (
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
|
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() { }
static aspect InnerAspect {
String s;
}
}
class SubClass extends ClassA {
public void foo() { }
}
|