blob: 34f6954dc4a048a1b1205eb22e3b6d411bed320c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import org.aspectj.lang.annotation.Aspect;
import java.lang.annotation.*;
public aspect SimpleAspect {
public static void main(String[] args) {
Annotation[] annotations = SimpleAspect.class.getAnnotations();
if (annotations.length != 1) throw new RuntimeException("Should have one annotation");
Aspect aspectAnnotation = (Aspect) annotations[0];
if (!aspectAnnotation.value().equals("")) throw new RuntimeException("value should be empty");
}
}
|