本文整理汇总了Java中org.walkmod.javalang.ast.expr.AnnotationExpr.accept方法的典型用法代码示例。如果您正苦于以下问题:Java AnnotationExpr.accept方法的具体用法?Java AnnotationExpr.accept怎么用?Java AnnotationExpr.accept使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.walkmod.javalang.ast.expr.AnnotationExpr
的用法示例。
在下文中一共展示了AnnotationExpr.accept方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visit
import org.walkmod.javalang.ast.expr.AnnotationExpr; //导入方法依赖的package包/类
@Override
public void visit(EnumConstantDeclaration 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);
}
}
if (n.getArgs() != null) {
for (Expression e : n.getArgs()) {
e.accept(expressionTypeAnalyzer, arg);
}
}
if (n.getClassBody() != null) {
loadThisSymbol(n, arg);
}
}
示例2: visit
import org.walkmod.javalang.ast.expr.AnnotationExpr; //导入方法依赖的package包/类
@Override
public void visit(IntersectionType n, Object arg) {
prepareComments(n);
printPreviousComments(n, arg);
if (n.getAnnotations() != null) {
for (AnnotationExpr ae : n.getAnnotations()) {
printer.print(" ");
ae.accept(this, arg);
}
}
List<ReferenceType> types = n.getBounds();
if (types != null) {
for (int i = 0; i < types.size(); i++) {
types.get(i).accept(this, arg);
if (i + 1 < types.size()) {
printer.print(" & ");
}
}
}
}
示例3: visit
import org.walkmod.javalang.ast.expr.AnnotationExpr; //导入方法依赖的package包/类
public void visit(ConstructorDeclaration 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);
}
}
if (n.getTypeParameters() != null) {
for (TypeParameter t : n.getTypeParameters()) {
t.accept(this, arg);
}
}
if (n.getParameters() != null) {
for (Parameter p : n.getParameters()) {
p.accept(this, arg);
}
}
if (n.getThrows() != null) {
for (ClassOrInterfaceType name : n.getThrows()) {
name.accept(this, arg);
}
}
n.getBlock().accept(this, arg);
}
示例4: visit
import org.walkmod.javalang.ast.expr.AnnotationExpr; //导入方法依赖的package包/类
public R visit(EnumConstantDeclaration 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);
}
}
if (n.getArgs() != null) {
for (Expression e : n.getArgs()) {
e.accept(this, arg);
}
}
if (n.getClassBody() != null) {
for (BodyDeclaration member : n.getClassBody()) {
member.accept(this, arg);
}
}
return null;
}
示例5: printAnnotations
import org.walkmod.javalang.ast.expr.AnnotationExpr; //导入方法依赖的package包/类
private void printAnnotations(List<AnnotationExpr> annotations, Object arg) {
if (annotations != null) {
Node previous = null;
Iterator<AnnotationExpr> it = annotations.iterator();
while (it.hasNext()) {
AnnotationExpr current = it.next();
if (previous != null && !previous.isNewNode() && !current.isNewNode()) {
addEntersBetween(previous, current);
}
current.accept(this, arg);
printer.print(" ");
previous = current;
}
}
}