scala.xml

object Xhtml

[source: scala/xml/Xhtml.scala]

object Xhtml
extends AnyRef
Method Summary
def sequenceToXML (children : Seq[Node], pscope : NamespaceBinding, sb : StringBuilder, stripComments : Boolean, decodeEntities : Boolean, preserveWhitespace : Boolean, minimizeTags : Boolean) : Unit
Amounts to calling toXhtml(node, ...) with the given parameters on each node.
def toXhtml (nodeSeq : NodeSeq) : java.lang.String
Convenience function: amounts to calling toXhtml(node) on each node in the sequence.
def toXhtml (node : Node) : java.lang.String
Convenience function: same as toXhtml(node, false, false)
def toXhtml (x : Node, pscope : NamespaceBinding, sb : StringBuilder, stripComments : Boolean, decodeEntities : Boolean, preserveWhitespace : Boolean, minimizeTags : Boolean) : Unit
Methods inherited from AnyRef
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Method Details
def toXhtml(node : Node) : java.lang.String
Convenience function: same as toXhtml(node, false, false)
Parameters
node - the node

def toXhtml(nodeSeq : NodeSeq) : java.lang.String
Convenience function: amounts to calling toXhtml(node) on each node in the sequence.
Parameters
nodeSeq - the node sequence

def toXhtml(x : Node, pscope : NamespaceBinding, sb : StringBuilder, stripComments : Boolean, decodeEntities : Boolean, preserveWhitespace : Boolean, minimizeTags : Boolean) : Unit

def sequenceToXML(children : Seq[Node], pscope : NamespaceBinding, sb : StringBuilder, stripComments : Boolean, decodeEntities : Boolean, preserveWhitespace : Boolean, minimizeTags : Boolean) : Unit
Amounts to calling toXhtml(node, ...) with the given parameters on each node.