1 2 3 4 5 6 7 8 9 10 11 12
package com.foo.goo; import java.util.List; import java.lang.annotation.Retention; import org.aspectj.lang.annotation.Around; public class C { public static void main(String []argv) { new C().foo(); } public void foo() {} }