aboutsummaryrefslogtreecommitdiffstats
path: root/ajde/testdata/WeaveInfoMessagesTest/Simple.java
blob: 9340875460d82e6e5d68b35017a49810ef045d28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// A simple class, interfered with by all sorts of advice !

public class Simple {
	
	public void m1() {
		
	}
	
	public String m2() {
		return "a";
	}
	
	public static void main(String[] argv) {
		
	}
	
	private void mSecret() {
		
	}
	
}