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