|
Scala
1.4.0.3 |
|||
Field Summary | |
val isValidating: Boolean
returns true is this markup handler is validing |
Method Summary | |
def attListDecl(name: String, attList: List[AttrDecl]): Unit
|
|
abstract
|
def comment(pos: Int, comment: String): NodeSeq
callback method invoked by MarkupParser after parsing comment. |
var decls: List[Decl]
|
|
abstract
|
def elem(pos: Int, pre: String, label: String, attrs: MetaData, scope: NamespaceBinding, args: NodeSeq): NodeSeq
callback method invoked by MarkupParser after parsing an elementm, between the elemStart and elemEnd callbacks |
def elemDecl(n: String, cmstr: String): Unit
|
|
def elemEnd(pos: Int, pre: String, label: String): Unit
callback method invoked by MarkupParser after end-tag of element. |
|
def elemStart(pos: Int, pre: String, label: String, attrs: MetaData, scope: NamespaceBinding): Unit
callback method invoked by MarkupParser after start-tag of element. |
|
def endDTD(n: String): Unit
|
|
var ent: Map[String,EntityDecl]
|
|
abstract
|
def entityRef(pos: Int, n: String): NodeSeq
callback method invoked by MarkupParser after parsing entity ref. |
def lookupElemDecl(Label: String): ElemDecl
|
|
def notationDecl(notat: String, extID: ExternalID): Unit
|
|
def parameterEntityDecl(name: String, edef: EntityDef): Unit
|
|
def parsedEntityDecl(name: String, edef: EntityDef): Unit
|
|
def peReference(name: String): Unit
|
|
abstract
|
def procInstr(pos: Int, target: String, txt: String): NodeSeq
callback method invoked by MarkupParser after parsing PI. |
def replacementText(entityName: String): Source
|
|
abstract
|
def reportSyntaxError(pos: Int, str: String): Unit
report a syntax error |
abstract
|
def text(pos: Int, txt: String): NodeSeq
callback method invoked by MarkupParser after parsing text. |
def unparsedEntityDecl(name: String, extID: ExternalID, notat: String): Unit
|
Methods inherited from java/lang/Object-class |
clone, eq, equals, finalize, getClass, hashCode, ne, notify, notifyAll, synchronized, toString, wait, wait, wait |
Methods inherited from scala/Any-class |
!=, ==, asInstanceOf, isInstanceOf, match |
Methods inherited from scala/ScalaObject-class |
getScalaType |
Methods inherited from scala/util/logging/Logged-class |
log |
Field Detail |
val isValidating: Boolean
Method Detail |
var decls: List[Decl]
var ent: Map[String,EntityDecl]
def lookupElemDecl(Label: String): ElemDecl
def replacementText(entityName: String): Source
def endDTD(n: String): Unit
def elemStart(pos: Int, pre: String, label: String, attrs: MetaData, scope: NamespaceBinding): Unit
pos
-
the position in the sourcefile
pre
-
the prefix
label
-
the local name
attrs
-
the attributes (metadata)
def elemEnd(pos: Int, pre: String, label: String): Unit
pos
-
the position in the sourcefile
pre
-
the prefix
label
-
the local name
attrs
-
the attributes (metadata)
abstract def elem(pos: Int, pre: String, label: String, attrs: MetaData, scope: NamespaceBinding, args: NodeSeq): NodeSeq
pos
-
the position in the sourcefile
pre
-
the prefix
label
-
the local name
attrs
-
the attributes (metadata)
args
-
the children of this element
abstract def procInstr(pos: Int, target: String, txt: String): NodeSeq
abstract def comment(pos: Int, comment: String): NodeSeq
abstract def entityRef(pos: Int, n: String): NodeSeq
abstract def text(pos: Int, txt: String): NodeSeq
def elemDecl(n: String, cmstr: String): Unit
def attListDecl(name: String, attList: List[AttrDecl]): Unit
def parameterEntityDecl(name: String, edef: EntityDef): Unit
def parsedEntityDecl(name: String, edef: EntityDef): Unit
def unparsedEntityDecl(name: String, extID: ExternalID, notat: String): Unit
def notationDecl(notat: String, extID: ExternalID): Unit
def peReference(name: String): Unit
abstract def reportSyntaxError(pos: Int, str: String): Unit
|
Scala
1.4.0.3 |
|||