How do I force a Java subclass to define an Annotation? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T02:16:08Z http://stackoverflow.com/feeds/question/95389 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/95389/how-do-i-force-a-java-subclass-to-define-an-annotation 4 How do I force a Java subclass to define an Annotation? Limo Driver 2008-09-18T18:32:40Z 2008-10-17T21:09:26Z <p>If a class defined an annotation, is it somehow possible to force its subclass to define the same annotation?</p> <p>For instance, we have a simple class/subclass pair that share the <code>@Author @interface.</code> What I'd like to do is force each further subclass to define the same <code>@Author</code> annotation, preventing a <code>RuntimeException</code> somewhere down the road. </p> <p>TestClass.java:</p> <pre><code>import java.lang.annotation.*; @Retention(RetentionPolicy.RUNTIME) @interface Author { String name(); } @Author( name = "foo" ) public abstract class TestClass { public static String getInfo( Class&lt;? extends TestClass&gt; c ) { return c.getAnnotation( Author.class ).name(); } public static void main( String[] args ) { System.out.println( "The test class was written by " + getInfo( TestClass.class ) ); System.out.println( "The test subclass was written by " + getInfo( TestSubClass.class ) ); } } </code></pre> <p>TestSubClass.java:</p> <pre><code>@Author( name = "bar" ) public abstract class TestSubClass extends TestClass {} </code></pre> <p>I know I can enumerate all annotations at runtime and check for the missing <code>@Author</code>, but I'd really like to do this at compile time, if possible.</p> http://stackoverflow.com/questions/95389/how-do-i-force-a-java-subclass-to-define-an-annotation/95467#95467 1 Answer by Rasmus Faber for How do I force a Java subclass to define an Annotation? Rasmus Faber 2008-09-18T18:38:53Z 2008-09-18T18:38:53Z <p>I am quite sure that this is impossible to do at compile time.</p> <p>However, this is an obvious task for a "unit"-test. If you have conventions like this that you would like enforced, but which can be difficult or impossible to check with the compiler, "unit"-tests are a simple way to check them.</p> <p>Another possibility is to implement a custom rule in a static analyzer. There are many options here, too.</p> <p>(I put unit in scare-quotes, since this is really a test of conventions, rather than of a specific unit. But it should run together with your unit-tests).</p> http://stackoverflow.com/questions/95389/how-do-i-force-a-java-subclass-to-define-an-annotation/95522#95522 2 Answer by GHad for How do I force a Java subclass to define an Annotation? GHad 2008-09-18T18:42:15Z 2008-09-18T18:42:15Z <p>You could make an Annotation (e.g. @EnforceAuthor) with @Inherited on the superclass and use compiler annotations (since Java 1.6) to catch up at compile time. Then you have a reference to the subclass and can check if another Annotation (e.g. @Author)) is missing. This would allow to cancel compiling with an error message.</p> http://stackoverflow.com/questions/95389/how-do-i-force-a-java-subclass-to-define-an-annotation/213866#213866 1 Answer by Bouil for How do I force a Java subclass to define an Annotation? Bouil 2008-10-17T21:09:26Z 2008-10-17T21:09:26Z <p>You can do that with JSR 269, at compile time. See : <a href="http://today.java.net/pub/a/today/2006/06/29/validate-java-ee-annotations-with-annotation-processors.html#pluggable-annotation-processing-api" rel="nofollow">http://today.java.net/pub/a/today/2006/06/29/validate-java-ee-annotations-with-annotation-processors.html#pluggable-annotation-processing-api</a></p>