本文整理汇总了Java中org.walkmod.javalang.ast.expr.ArrayCreationExpr.getArraysAnnotations方法的典型用法代码示例。如果您正苦于以下问题:Java ArrayCreationExpr.getArraysAnnotations方法的具体用法?Java ArrayCreationExpr.getArraysAnnotations怎么用?Java ArrayCreationExpr.getArraysAnnotations使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.walkmod.javalang.ast.expr.ArrayCreationExpr
的用法示例。
在下文中一共展示了ArrayCreationExpr.getArraysAnnotations方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visit
import org.walkmod.javalang.ast.expr.ArrayCreationExpr; //导入方法依赖的package包/类
public R visit(ArrayCreationExpr n, A arg) {
n.getType().accept(this, arg);
if (n.getDimensions() != null) {
for (Expression dim : n.getDimensions()) {
dim.accept(this, arg);
}
} else {
n.getInitializer().accept(this, arg);
}
if (n.getArraysAnnotations() != null) {
for (List<AnnotationExpr> list : n.getArraysAnnotations()) {
if (list != null) {
for (AnnotationExpr ae : list) {
ae.accept(this, arg);
}
}
}
}
return null;
}
示例2: visit
import org.walkmod.javalang.ast.expr.ArrayCreationExpr; //导入方法依赖的package包/类
@Override
public Node visit(ArrayCreationExpr _n, Object _arg) {
Type type_ = cloneNodes(_n.getType(), _arg);
List<Expression> dimensions = visit(_n.getDimensions(), _arg);
ArrayCreationExpr r = new ArrayCreationExpr(_n.getBeginLine(), _n.getBeginColumn(), _n.getEndLine(),
_n.getEndColumn(), type_, dimensions, _n.getArrayCount());
if (_n.getInitializer() != null) {
// ArrayCreationExpr has two mutually
// exclusive constructors
r.setInitializer(cloneNodes(_n.getInitializer(), _arg));
}
List<List<AnnotationExpr>> arraysAnnotations = _n.getArraysAnnotations();
List<List<AnnotationExpr>> _arraysAnnotations = null;
if (arraysAnnotations != null) {
_arraysAnnotations = new LinkedList<List<AnnotationExpr>>();
for (List<AnnotationExpr> aux : arraysAnnotations) {
_arraysAnnotations.add(visit(aux, _arg));
}
}
r.setArraysAnnotations(_arraysAnnotations);
return r;
}
示例3: visit
import org.walkmod.javalang.ast.expr.ArrayCreationExpr; //导入方法依赖的package包/类
public void visit(ArrayCreationExpr n, A arg) {
n.getType().accept(this, arg);
if (n.getDimensions() != null) {
for (Expression dim : n.getDimensions()) {
dim.accept(this, arg);
}
} else {
n.getInitializer().accept(this, arg);
}
if (n.getArraysAnnotations() != null) {
for (List<AnnotationExpr> annList : n.getArraysAnnotations()) {
if (annList != null) {
for (AnnotationExpr ae : annList) {
ae.accept(this, arg);
}
}
}
}
}
示例4: visit
import org.walkmod.javalang.ast.expr.ArrayCreationExpr; //导入方法依赖的package包/类
public Boolean visit(ArrayCreationExpr n1, Node arg) {
ArrayCreationExpr n2 = (ArrayCreationExpr) arg;
if (n1.getArrayCount() != n2.getArrayCount()) {
return Boolean.FALSE;
}
if (!nodeEquals(n1.getType(), n2.getType())) {
return Boolean.FALSE;
}
if (!nodeEquals(n1.getInitializer(), n2.getInitializer())) {
return Boolean.FALSE;
}
if (!nodesEquals(n1.getDimensions(), n2.getDimensions())) {
return Boolean.FALSE;
}
List<List<AnnotationExpr>> n1a = n1.getArraysAnnotations();
List<List<AnnotationExpr>> n2a = n2.getArraysAnnotations();
if (n1a != null && n2a != null) {
if (n1a.size() != n2a.size()) {
return Boolean.FALSE;
} else {
int i = 0;
for (List<AnnotationExpr> aux : n1a) {
if (!nodesEquals(aux, n2a.get(i))) {
return Boolean.FALSE;
}
i++;
}
}
} else if (n1a != n2a) {
return Boolean.FALSE;
}
return Boolean.TRUE;
}
示例5: visit
import org.walkmod.javalang.ast.expr.ArrayCreationExpr; //导入方法依赖的package包/类
public Node visit(ArrayCreationExpr n, A arg) {
n.setType((Type) n.getType().accept(this, arg));
if (n.getDimensions() != null) {
List<Expression> dimensions = n.getDimensions();
if (dimensions != null) {
for (int i = 0; i < dimensions.size(); i++) {
dimensions.set(i, (Expression) dimensions.get(i).accept(this, arg));
}
removeNulls(dimensions);
}
} else {
n.setInitializer((ArrayInitializerExpr) n.getInitializer().accept(this, arg));
}
List<List<AnnotationExpr>> arrayAnnotations = n.getArraysAnnotations();
if (arrayAnnotations != null) {
for (int i = 0; i < arrayAnnotations.size(); i++) {
final List<AnnotationExpr> annotationsA = (List<AnnotationExpr>) arrayAnnotations.get(i);
if (annotationsA != null) {
for (int j = 0; j < annotationsA.size(); j++) {
annotationsA.set(i, (AnnotationExpr) annotationsA.get(j).accept(this, arg));
}
removeNulls(annotationsA);
}
arrayAnnotations.set(i, annotationsA);
}
removeNulls(arrayAnnotations);
}
return n;
}