/*
  * @see ASTVisitor#visit(MethodRefParameter)
  * @since 3.0
  */
 public boolean visit(MethodRefParameter node) {
   node.getType().accept(this);
   if (node.getAST().apiLevel() >= AST.JLS3) {
     if (node.isVarargs()) {
       this.fBuffer.append("..."); // $NON-NLS-1$
     }
   }
   if (node.getName() != null) {
     this.fBuffer.append(" "); // $NON-NLS-1$
     node.getName().accept(this);
   }
   return false;
 }