I have created an annotation which goes like the one below.
as is there a way with which i can do an equivalent of this ?Code:@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface AnAnnotation{ public String value(); }
Code:execution(@AnAnnotation(value=="somethingInteresting") *.*(..))


Reply With Quote