blob: eed38b6a3670bb18ca8b932dd87f9f9695d4aecf (
plain)
1
2
3
4
5
6
7
8
9
10
|
import org.aspectj.lang.annotation.*;
@Aspect
public class Code2 {
@Around("execution(* Code.*(..)) && if(java.lang.System.currentTimeMillis() > 1)")
public void foo() {
}
}
|