in scala/xml
class SpecialNode

abstract class SpecialNode()
extends Node
with ScalaObject
Implementing classes or objects:
class Comment(commentText: String)
class ProcInstr(target: String, proctext: String)
class Atom[+A](data: A)
class Molecule[+A](list: List[A])
class EntityRef(entityName: String)

a special XML node is either text (PCDATA), a comment, a PI, or an entity ref

Method Summary
final override def attributes: Null.type
     always empty
final def child: Nil.type
     always empty
final override def namespace: AllRef
     always Node.EmptyNamespace
final override def toString(): String
     Same as toString(false).
abstract def toString(sb: StringBuffer): StringBuffer

Methods inherited from java/lang/Object-class
clone, eq, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Methods inherited from scala/Iterable-class
/:, :\, concat, exists, find, foldLeft, foldRight, forall, foreach, sameElements

Methods inherited from scala/ScalaObject-class
getScalaType

Methods inherited from scala/Seq-class
concat, copyToArray, drop, indexOf, isDefinedAt, lastIndexOf, stringPrefix, subseq, take, toList

Methods inherited from scala/xml/Node-class
attribute, attribute, descendant, descendant_or_self, equals, getNamespace, label, nameToString, prefix, scope, text, theSeq, xmlType

Methods inherited from scala/xml/NodeSeq-class
\, \\, apply, apply, asList, elements, filter, flatMap, length, map

Method Detail

attributes

  final override def attributes: Null.type
always empty

namespace

  final override def namespace: AllRef
always Node.EmptyNamespace

child

  final def child: Nil.type
always empty

toString

  final override def toString(): String
Same as toString(false).
See Also:
"toString(Boolean)"

toString

  abstract def toString(sb: StringBuffer): StringBuffer