当前位置: 首页>>代码示例>>Java>>正文


Java SupportedAnnotationTypes类代码示例

本文整理汇总了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("*");
}
 
开发者ID:reprogrammer,项目名称:checker-framework,代码行数:33,代码来源:SourceChecker.java


注:本文中的javax.annotation.processing.SupportedAnnotationTypes类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。