|
Scala
1.4.0.1 |
|||
Method Summary | |
final
|
def attribute(key: String): String
looks up an unprefixed attribute in attributes of this node. |
final
|
def attribute(uri: String, key: String): String
looks up a prefixed attribute in attributes of this node. |
def attributes: MetaData
attribute axis - all attributes of this node, in order defined by attrib |
|
abstract
|
def child: Seq[Node]
child axis (all children of this node) |
def descendant: List[Node]
descendant axis (all descendants of this node, not including not itself) |
|
def descendant_or_self: List[Node]
descendant axis (all descendants of this node, including this node) |
|
override
|
def equals(x: Any): Boolean
structural equality |
def getNamespace(_pre: String): String
|
|
abstract override
|
def hashCode(): Int
returns a hashcode |
abstract
|
def label: String
label of this node. |
def nameToString(sb: StringBuffer): StringBuffer
appends qualified name of this node to StringBuffer |
|
def namespace: String
|
|
def prefix: String
prefix of this node |
|
def scope: NamespaceBinding
the namespace bindings |
|
final
|
def theSeq: List[Node]
method for NodeSeq |
def toString(stripComment: Boolean): String
String representation of this node |
|
override
|
def toString(): String
same as toString(false). |
def xmlType(): TypeSymbol
returns a type symbol (e.g. |
Methods inherited from java/lang/Object-class |
clone, eq, finalize, getClass, 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/NodeSeq-class |
\, \\, apply, asList, elements, filter, flatMap, length, map |
Method Detail |
def prefix: String
abstract def label: String
def scope: NamespaceBinding
def namespace: String
def getNamespace(_pre: String): String
final def attribute(key: String): String
key
-
of queried attribute.
final def attribute(uri: String, key: String): String
uri
-
namespace of queried attribute (may not be null).
key
-
of queried attribute.
def attributes: MetaData
abstract def child: Seq[Node]
def descendant: List[Node]
def descendant_or_self: List[Node]
override def equals(x: Any): Boolean
abstract override def hashCode(): Int
final def theSeq: List[Node]
def toString(stripComment: Boolean): String
stripComment
-
if true, strips comment nodes from result
override def toString(): String
def nameToString(sb: StringBuffer): StringBuffer
def xmlType(): TypeSymbol
|
Scala
1.4.0.1 |
|||