本文整理汇总了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;
}
示例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);
}
示例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 );
}
}