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


Java Symbol.getAnnotationMirrors方法代码示例

本文整理汇总了Java中com.sun.tools.javac.code.Symbol.getAnnotationMirrors方法的典型用法代码示例。如果您正苦于以下问题:Java Symbol.getAnnotationMirrors方法的具体用法?Java Symbol.getAnnotationMirrors怎么用?Java Symbol.getAnnotationMirrors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.tools.javac.code.Symbol的用法示例。


在下文中一共展示了Symbol.getAnnotationMirrors方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isStructuralInterface

import com.sun.tools.javac.code.Symbol; //导入方法依赖的package包/类
public static boolean isStructuralInterface( TypeProcessor tp, Symbol sym )
{
  if( sym == null || !sym.isInterface() || !sym.hasAnnotations() )
  {
    return false;
  }

  // use the raw type
  Type type = tp.getTypes().erasure( sym.type );
  sym = type.tsym;

  for( Attribute.Compound annotation : sym.getAnnotationMirrors() )
  {
    if( annotation.type.toString().equals( Structural.class.getName() ) )
    {
      return true;
    }
  }
  return false;
}
 
开发者ID:manifold-systems,项目名称:manifold,代码行数:21,代码来源:TypeUtil.java

示例2: isAnnotatedApi

import com.sun.tools.javac.code.Symbol; //导入方法依赖的package包/类
/**
 * Returns true if the given symbol is annotated with the annotation or if it's a member of a type
 * annotated with the annotation.
 */
private boolean isAnnotatedApi(Symbol symbol) {
  Name name = symbol.getQualifiedName();
  if (name != null && isIgnoredType(name.toString())) {
    return false;
  }

  for (AnnotationMirror annotation : symbol.getAnnotationMirrors()) {
    if (annotation.getAnnotationType().toString().equals(annotationType)) {
      return true;
    }
  }

  return isMemberOfAnnotatedApi(symbol);
}
 
开发者ID:google,项目名称:guava-beta-checker,代码行数:19,代码来源:AnnotatedApiUsageChecker.java

示例3: addAnnotations

import com.sun.tools.javac.code.Symbol; //导入方法依赖的package包/类
private void addAnnotations( SrcAnnotated<?> srcAnnotated, Symbol symbol )
{
  for( Attribute.Compound annotationMirror : symbol.getAnnotationMirrors() )
  {
    SrcAnnotationExpression annoExpr = new SrcAnnotationExpression( annotationMirror.getAnnotationType().toString() );
    for( Pair<Symbol.MethodSymbol, Attribute> value : annotationMirror.values )
    {
      annoExpr.addArgument( value.fst.flatName().toString(), new SrcType( value.snd.type.toString() ), value.snd.getValue() );
    }
    srcAnnotated.addAnnotation( annoExpr );
  }
}
 
开发者ID:manifold-systems,项目名称:manifold,代码行数:13,代码来源:SrcClassUtil.java


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