blob: 4018bafed9597a1e40164bf3a6bb706c0fc4142f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import org.aspectj.lang.annotation.Aspect;
import java.lang.annotation.*;
public aspect PerCflowbelowAspect percflowbelow(execution(* Foo.foo(..))) {
public static void main(String[] args) {
Annotation[] annotations = PerCflowbelowAspect.class.getAnnotations();
if (annotations.length != 1) throw new RuntimeException("Should have one annotation");
Aspect aspectAnnotation = (Aspect) annotations[0];
if (!aspectAnnotation.value().equals("percflowbelow(execution(* Foo.foo(..)))")) throw new RuntimeException("value should be equal to perclause");
}
}
class Foo {
void foo() {}
}
|