|
Scala Library
|
|
abstract
class
DefaultMarkupHandler
extends MarkupHandler| Values and Variables inherited from MarkupHandler | |
| isValidating, decls, ent |
| Method Summary | |
def
|
comment
(pos : Int, comment : java.lang.String) : NodeSeq
callback method invoked by MarkupParser after parsing comment.
|
def
|
elem
(pos : Int, pre : java.lang.String, label : java.lang.String, attrs : MetaData, scope : NamespaceBinding, args : NodeSeq) : NodeSeq
callback method invoked by MarkupParser after parsing an elementm,
between the elemStart and elemEnd callbacks
|
def
|
entityRef
(pos : Int, n : java.lang.String) : NodeSeq
callback method invoked by MarkupParser after parsing entity ref.
|
def
|
procInstr
(pos : Int, target : java.lang.String, txt : java.lang.String) : NodeSeq
callback method invoked by MarkupParser after parsing PI.
|
def
|
text
(pos : Int, txt : java.lang.String) : NodeSeq
callback method invoked by MarkupParser after parsing text.
|
| Methods inherited from MarkupHandler | |
| reportSyntaxError (abstract), lookupElemDecl, replacementText, endDTD, elemStart, elemEnd, elemDecl, attListDecl, parameterEntityDecl, parsedEntityDecl, unparsedEntityDecl, notationDecl, peReference |
| Methods inherited from Logged | |
| log |
| 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
elem(pos : Int, pre : java.lang.String, label : java.lang.String, attrs : MetaData, scope : NamespaceBinding, args : NodeSeq) : NodeSeq
pos - the position in the source filepre - the prefixlabel - the local nameattrs - the attributes (metadata)args - the children of this element
def
procInstr(pos : Int, target : java.lang.String, txt : java.lang.String) : NodeSeq
pos - the position in the source filetarget - ...txt - ...
def
comment(pos : Int, comment : java.lang.String) : NodeSeq
pos - the position in the source filecomment - ...
def
entityRef(pos : Int, n : java.lang.String) : NodeSeq
def
text(pos : Int, txt : java.lang.String) : NodeSeq
|
Scala Library
|
|