Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Annotations; using their members

Java offers several possibilities to use annotations & it's rather easy to
create and then use a custom 
annotation like:

@Target({METHOD,TYPE})
@Retention(RUNTIME)
public @interface Permission
{
    String[] value();
}

I think that it is not possible to match join points based on annotation
values because the AnnotationPattern is still not ready for such patterns.
Is there a workaround available or is it still impossible using the
annotation values?

ThanX
franzR



 



Back to the top