@Override
 public void visit(final VariableDeclarationExpr n, final A arg) {
   visitComment(n.getComment(), arg);
   visitAnnotations(n, arg);
   n.getElementType().accept(this, arg);
   for (final VariableDeclarator v : n.getVariables()) {
     v.accept(this, arg);
   }
 }
 @Override
 public void visit(final TryStmt n, final A arg) {
   visitComment(n.getComment(), arg);
   if (n.getResources() != null) {
     for (final VariableDeclarationExpr v : n.getResources()) {
       v.accept(this, arg);
     }
   }
   n.getTryBlock().accept(this, arg);
   if (n.getCatchs() != null) {
     for (final CatchClause c : n.getCatchs()) {
       c.accept(this, arg);
     }
   }
   if (n.getFinallyBlock() != null) {
     n.getFinallyBlock().accept(this, arg);
   }
 }
Example #3
0
  @Override
  public Boolean visit(final VariableDeclarationExpr n1, final Node arg) {
    final VariableDeclarationExpr n2 = (VariableDeclarationExpr) arg;

    if (n1.getModifiers() != n2.getModifiers()) {
      return Boolean.FALSE;
    }

    if (!nodesEquals(n1.getAnnotations(), n2.getAnnotations())) {
      return Boolean.FALSE;
    }

    if (!nodeEquals(n1.getType(), n2.getType())) {
      return Boolean.FALSE;
    }

    if (!nodesEquals(n1.getVars(), n2.getVars())) {
      return Boolean.FALSE;
    }

    return Boolean.TRUE;
  }