in scala.xml
class NodeBuffer

class NodeBuffer
extends scala.collection.mutable.ArrayBuffer[scala.xml.Node]
with scala.ScalaObject
This class acts as a Buffer for nodes. If it is used as a sequence of nodes Seq[Node], it must be ensured that no updates occur after that point, because scala.xml.Node is assumed to be immutable. Despite this being a sequence, don't use it as key in a hashtable. Calling the hashcode function will result in a runtime error.
Author:
Burak Emir
Version:
1.0

Constructor Summary
def this

Def Summary
def &+ (o: scala.Any) : scala.xml.NodeBuffer
Append given object to this buffer, returns reference on this NodeBuffer for convenience. Some rules apply: If o is null, it is ignored. If it is an Iterator or Iterable, its elements will be added. If o is a node, it is added as it is. If it is anything else, it gets wrapped in an Atom.
Def inherited from scala.collection.mutable.ArrayBuffer[scala.xml.Node]
++: , ++=, ++=, +:, +=, apply, clear, clone, equals, insertAll, remove, stringPrefix, update
Constructor Detail
def this

Def Detail
def &+ (o: scala.Any): scala.xml.NodeBuffer
Append given object to this buffer, returns reference on this NodeBuffer for convenience. Some rules apply: If o is null, it is ignored. If it is an Iterator or Iterable, its elements will be added. If o is a node, it is added as it is. If it is anything else, it gets wrapped in an Atom.
Parameters:
o - converts to an xml node and adds to this node buffer
Returns:
this nodebuffer