本文整理汇总了Java中javax.annotation.processing.SupportedAnnotationTypes类的典型用法代码示例。如果您正苦于以下问题:Java SupportedAnnotationTypes类的具体用法?Java SupportedAnnotationTypes怎么用?Java SupportedAnnotationTypes使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SupportedAnnotationTypes类属于javax.annotation.processing包,在下文中一共展示了SupportedAnnotationTypes类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getSupportedAnnotationTypes
import javax.annotation.processing.SupportedAnnotationTypes; //导入依赖的package包/类
/**
* Always returns a singleton set containing only "*".
*
* This method returns the argument to the {@link
* SupportedAnnotationTypes} annotation, so the effect of returning "*"
* is as if the checker were annotated by
* {@code @SupportedAnnotationTypes("*")}:
* javac runs the checker on every
* class mentioned on the javac command line. This method also checks
* that subclasses do not contain a {@link SupportedAnnotationTypes}
* annotation. <p>
*
* To specify the annotations that a checker recognizes as type qualifiers,
* use the {@link TypeQualifiers} annotation on the declaration of
* subclasses of this class or override the
* {@link BaseAnnotatedTypeFactory#getSupportedTypeQualifiers()} method.
*
* @throws Error if a subclass is annotated with
* {@link SupportedAnnotationTypes}
*
* @see TypeQualifiers
*/
@Override
public final Set<String> getSupportedAnnotationTypes() {
SupportedAnnotationTypes supported = this.getClass().getAnnotation(
SupportedAnnotationTypes.class);
if (supported != null)
ErrorReporter.errorAbort("@SupportedAnnotationTypes should not be written on any checker;"
+ " supported annotation types are inherited from SourceChecker.");
return Collections.singleton("*");
}