nor..67 9e53abbb7a move jme3 to trunk
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@6971 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
2011-03-14 12:55:32 +00:00

17 lines
466 B
Java

package checkers.quals;
import java.lang.annotation.Target;
/**
* A special annotation intended solely for representing an unqualified type in
* the qualifier hierarchy, as an argument to {@link SubtypeOf#value()},
* in the type qualifiers declarations.
*
* <p>
* Programmers cannot write this in source code.
*/
@TypeQualifier
@SubtypeOf({})
@Target({}) // empty target prevents programmers from writing this in a program
public @interface Unqualified { }