aboutsummaryrefslogtreecommitdiffstats
path: root/weaver/testsrc/fluffy/Derived.java
blob: e6d848cfb94e28dea6cb9fad911eb67098566e92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package fluffy;

import java.io.IOException;

import org.aspectj.weaver.testcode.Base;

public class Derived extends Base {

	public static void onlyDerived() throws IOException, CloneNotSupportedException {}
	public static void both() {}
	
	public void onlyDerivedNonStatic() {}
	public void bothNonStatic() {}
	
	public int onlyDerived;
	public int both;
	
	public Derived() {}
	
	public void m() {}
	
}