}
node.getBody().accept(this);
this.buffer.append(" ");//$NON-NLS-1$
for (Iterator it = node.catchClauses().iterator(); it.hasNext(); ) {
CatchClause cc = (CatchClause) it.next();
cc.accept(this);
}
if (node.getFinally() != null) {
this.buffer.append(" finally ");//$NON-NLS-1$
node.getFinally().accept(this);
}