本文整理匯總了Java中org.walkmod.javalang.ast.expr.VariableDeclarationExpr.getAnnotations方法的典型用法代碼示例。如果您正苦於以下問題:Java VariableDeclarationExpr.getAnnotations方法的具體用法?Java VariableDeclarationExpr.getAnnotations怎麽用?Java VariableDeclarationExpr.getAnnotations使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.walkmod.javalang.ast.expr.VariableDeclarationExpr
的用法示例。
在下文中一共展示了VariableDeclarationExpr.getAnnotations方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: visit
import org.walkmod.javalang.ast.expr.VariableDeclarationExpr; //導入方法依賴的package包/類
public Node visit(VariableDeclarationExpr n, A 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));
List<VariableDeclarator> vars = n.getVars();
for (int i = 0; i < vars.size(); i++) {
vars.set(i, (VariableDeclarator) vars.get(i).accept(this, arg));
}
removeNulls(vars);
return n;
}
示例2: visit
import org.walkmod.javalang.ast.expr.VariableDeclarationExpr; //導入方法依賴的package包/類
public R visit(VariableDeclarationExpr n, A arg) {
if (n.getAnnotations() != null) {
for (AnnotationExpr a : n.getAnnotations()) {
a.accept(this, arg);
}
}
n.getType().accept(this, arg);
for (VariableDeclarator v : n.getVars()) {
v.accept(this, arg);
}
return null;
}
示例3: visit
import org.walkmod.javalang.ast.expr.VariableDeclarationExpr; //導入方法依賴的package包/類
public void visit(VariableDeclarationExpr n, A arg) {
if (n.getAnnotations() != null) {
for (AnnotationExpr a : n.getAnnotations()) {
a.accept(this, arg);
}
}
n.getType().accept(this, arg);
for (VariableDeclarator v : n.getVars()) {
v.accept(this, arg);
}
}