blob: 28b1562d48e935509df5fe792550681dd21dcb9f (
plain)
1
2
3
4
5
6
7
8
9
10
|
// "@AdviceName given an empty string"
import org.aspectj.lang.annotation.*;
aspect A{
@AdviceName("")
before() : call(* org.aspectprogrammer..*(..)) {
System.out.println("Call from Foo");
}
}
|