|
Scala Library
|
|
scala/xml/Atom.scala]
class
Atom[+A](val data : A)
extends SpecialNodeAtom provides an XML node for text (PCDATA).
It is used in both non-bound and bound XML representations.text - the text contained in this node, may not be null.| Method Summary | |
override def
|
equals
(x : Any) : Boolean
Returns true if x is structurally equal to this node. Compares prefix,
label, attributes and children.
|
override def
|
hashCode
: Int
hashcode for this Text
|
def
|
label
: java.lang.String
the constant "#PCDATA"
|
override def
|
text
: java.lang.String
Returns a text representation of this node. Note that this is not equivalent to
the XPath node-test called text(), it is rather an implementation of the
XPath function string()
Martin to Burak: to do: if you make this method abstract, the compiler will now
complain if there's no implementation in a subclass. Is this what we want? Note that
this would break doc/DocGenator and doc/ModelToXML, with an error message like:
doc\DocGenerator.scala:1219: error: object creation impossible, since there is a deferred declaration of method text in class Node of type => String which is not implemented in a subclass
new SpecialNode {
^
|
def
|
toString
(sb : StringBuilder) : StringBuilder
Returns text, with some characters escaped according to the XML
specification.
|
| Methods inherited from SpecialNode | |
| attributes, namespace, child |
| Methods inherited from Node | |
| prefix, scope, getNamespace, attribute, attribute, descendant, descendant_or_self, theSeq, toString, toString, nameToString, xmlType |
| Methods inherited from NodeSeq | |
| length, elements, apply, apply, \, \\ |
| Methods inherited from Seq | |
| lengthCompare, size, isEmpty, concat, last, lastOption, first, firstOption, headOption, ++, isDefinedAt, lastIndexOf, findIndexOf, indexOf, map, flatMap, filter, take, drop, slice, slice, takeWhile, dropWhile, reverse, contains, subseq, toArray, toSeq, projection, equalsWith, startsWith, startsWith, endsWith, indexOf, containsSlice |
| Methods inherited from Collection | |
| stringPrefix |
| Methods inherited from Iterable | |
| partition, foreach, forall, exists, find, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, copyToBuffer, sameElements, toList, toStream, mkString, mkString, mkString, addString, addString, addString, copyToArray, hasDefiniteSize |
| Methods inherited from PartialFunction | |
| orElse, andThen |
| Methods inherited from Function1 | |
| compose |
| Methods inherited from AnyRef | |
| getClass, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
| Methods inherited from Any | |
| ==, !=, isInstanceOf, asInstanceOf |
| Method Details |
def
label : java.lang.String
x - ...true if ..override
def
hashCode : Int
def
toString(sb : StringBuilder) : StringBuilder
sb - ...override
def
text : java.lang.String
|
Scala Library
|
|