當前位置: 首頁>>代碼示例>>Java>>正文


Java AnnotationMemberDeclaration.getAnnotations方法代碼示例

本文整理匯總了Java中org.walkmod.javalang.ast.body.AnnotationMemberDeclaration.getAnnotations方法的典型用法代碼示例。如果您正苦於以下問題:Java AnnotationMemberDeclaration.getAnnotations方法的具體用法?Java AnnotationMemberDeclaration.getAnnotations怎麽用?Java AnnotationMemberDeclaration.getAnnotations使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.walkmod.javalang.ast.body.AnnotationMemberDeclaration的用法示例。


在下文中一共展示了AnnotationMemberDeclaration.getAnnotations方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: visit

import org.walkmod.javalang.ast.body.AnnotationMemberDeclaration; //導入方法依賴的package包/類
@Override
public void visit(AnnotationMemberDeclaration n, A arg) {

    if (n.getJavaDoc() != null) {
        n.getJavaDoc().accept(this, arg);
    }
    if (n.getAnnotations() != null) {
        for (AnnotationExpr a : n.getAnnotations()) {
            a.accept(this, arg);
        }
    }
    n.getType().accept(expressionTypeAnalyzer, arg);

    Expression expr = n.getDefaultValue();
    if (expr != null) {
        expr.accept(expressionTypeAnalyzer, arg);
    }
}
 
開發者ID:rpau,項目名稱:javalang-compiler,代碼行數:19,代碼來源:SymbolVisitorAdapter.java

示例2: visit

import org.walkmod.javalang.ast.body.AnnotationMemberDeclaration; //導入方法依賴的package包/類
public Node visit(AnnotationMemberDeclaration n, A arg) {
    if (n.getJavaDoc() != null) {
        n.setJavaDoc((JavadocComment) n.getJavaDoc().accept(this, arg));
    }
    List<AnnotationExpr> annotations = n.getAnnotations();
    if (annotations != null) {
        for (int i = 0; i < annotations.size(); i++) {
            annotations.set(i, (AnnotationExpr) annotations.get(i).accept(this, arg));
        }
        removeNulls(annotations);
    }
    n.setType((Type) n.getType().accept(this, arg));
    if (n.getDefaultValue() != null) {
        n.setDefaultValue((Expression) n.getDefaultValue().accept(this, arg));
    }
    return n;
}
 
開發者ID:rpau,項目名稱:javalang,代碼行數:18,代碼來源:ModifierVisitorAdapter.java

示例3: visit

import org.walkmod.javalang.ast.body.AnnotationMemberDeclaration; //導入方法依賴的package包/類
public R visit(AnnotationMemberDeclaration n, A arg) {
    if (n.getJavaDoc() != null) {
        n.getJavaDoc().accept(this, arg);
    }
    if (n.getAnnotations() != null) {
        for (AnnotationExpr a : n.getAnnotations()) {
            a.accept(this, arg);
        }
    }
    n.getType().accept(this, arg);
    if (n.getDefaultValue() != null) {
        n.getDefaultValue().accept(this, arg);
    }
    return null;
}
 
開發者ID:rpau,項目名稱:javalang,代碼行數:16,代碼來源:GenericVisitorAdapter.java

示例4: visit

import org.walkmod.javalang.ast.body.AnnotationMemberDeclaration; //導入方法依賴的package包/類
public void visit(AnnotationMemberDeclaration n, A arg) {
    if (n.getJavaDoc() != null) {
        n.getJavaDoc().accept(this, arg);
    }
    if (n.getAnnotations() != null) {
        for (AnnotationExpr a : n.getAnnotations()) {
            a.accept(this, arg);
        }
    }
    n.getType().accept(this, arg);
    if (n.getDefaultValue() != null) {
        n.getDefaultValue().accept(this, arg);
    }
}
 
開發者ID:rpau,項目名稱:javalang,代碼行數:15,代碼來源:VoidVisitorAdapter.java


注:本文中的org.walkmod.javalang.ast.body.AnnotationMemberDeclaration.getAnnotations方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。