aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher/src/test/java/org/aspectj/weaver/testcode/Base.java
blob: e580242be6993e3f26610f55aefc8fc7c4d4f267 (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;

public class Base {

	public static void onlyBase() {
	}

	public static void both() {
	}

	public void onlyBaseNonStatic() {
	}

	public void bothNonStatic() {
	}

	public int onlyBase;
	public int both;

	public Base() {
	}

	public Base(int i) {
	}

	public void m() throws CloneNotSupportedException {
	}
}