/*
  * @see ASTVisitor#visit(SynchronizedStatement)
  */
 @Override
 public boolean visit(SynchronizedStatement node) {
   this.fBuffer.append("synchronized ("); // $NON-NLS-1$
   node.getExpression().accept(this);
   this.fBuffer.append(") "); // $NON-NLS-1$
   node.getBody().accept(this);
   return false;
 }
 public void visitSynchronizedStatement(SynchronizedStatement statement) {
   statement.getExpression().visit(this);
   statement.getCode().visit(this);
 }