aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher/testsrc/org/aspectj/weaver/testcode/Derived.java
blob: 5d616d79ddb0f29ad90b6c76e9d13c332506aee4 (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
package org.aspectj.weaver.testcode;

import java.io.IOException;

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() {
	}

}