checkers.quals.Unqualified Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jme3-core Show documentation
Show all versions of jme3-core Show documentation
jMonkeyEngine is a 3-D game engine for adventurous Java developers
The newest version!
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.
*
*
* Programmers cannot write this in source code.
*/
@TypeQualifier
@SubtypeOf({})
@Target({}) // empty target prevents programmers from writing this in a program
public @interface Unqualified { }
© 2015 - 2024 Weber Informatics LLC | Privacy Policy