blob: 7e893fc1aeee246466ebea3c0a9266c4127eea3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
public class Application {
public static void main(String[] argv) {
System.out.println("Hello world!");
}
static aspect MyAspect {
before(): execution(* Application.main(..)) {
System.out.println("Before advice");
}
}
}
|