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


Java AnnotationMemberDeclaration.getDefaultValue方法代码示例

本文整理汇总了Java中org.walkmod.javalang.ast.body.AnnotationMemberDeclaration.getDefaultValue方法的典型用法代码示例。如果您正苦于以下问题:Java AnnotationMemberDeclaration.getDefaultValue方法的具体用法?Java AnnotationMemberDeclaration.getDefaultValue怎么用?Java AnnotationMemberDeclaration.getDefaultValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.walkmod.javalang.ast.body.AnnotationMemberDeclaration的用法示例。


在下文中一共展示了AnnotationMemberDeclaration.getDefaultValue方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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, Object arg) {
    prepareComments(n);
    JavadocComment comment = n.getJavaDoc();

    if (comment != null) {
        printPreviousComments(comment, arg);
    }

    printJavadoc(comment, arg);
    if (comment != null && !n.isNewNode() && !comment.isNewNode()) {
        int start = comment.getEndLine();
        int end = n.getBeginLine();
        for (int i = start + 1; i < end; i++) {
            printer.printLn();
        }
    }
    printMemberAnnotations(n.getAnnotations(), arg);
    printModifiers(n.getModifiers());
    n.getType().accept(this, arg);
    printer.print(" ");
    printer.print(n.getName());
    printer.print("()");
    if (n.getDefaultValue() != null) {
        printer.print(" default ");
        n.getDefaultValue().accept(this, arg);
    }
    printer.print(";");
}
 
开发者ID:rpau,项目名称:javalang,代码行数:29,代码来源:DumpVisitor.java

示例5: 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.getDefaultValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。