/*
  * @see ASTVisitor#visit(CatchClause)
  */
 public boolean visit(CatchClause node) {
   this.fBuffer.append("catch ("); // $NON-NLS-1$
   node.getException().accept(this);
   this.fBuffer.append(") "); // $NON-NLS-1$
   node.getBody().accept(this);
   return false;
 }