I know that it's not possible to extends Java annotations.

I've created an annotation for a private field which means that the field is likely to appear unused in the class in which it is declared. For this reason, I'm getting a lot of "unused field" warnings on my annotated fields.

Is there any way to give my annotation the behaviour of @SuppressWarnings("unused") so I don't have to doubly-annotate every field which has @MyAnnotation?

link|improve this question

53% accept rate
1  
If you have IntelliJ idea you could set the checker to ignore any field having your annotation. That's not a solution for your problem but might be a workaround. – Thomas Dec 30 '11 at 14:02
@Thomas thanks - as you say not a solution, but helpful :) – Alison Dec 30 '11 at 14:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.