in scala/xml/parsing
class ConstructingParser

abstract class ConstructingParser()
extends MarkupParser[Node]
with ScalaObject

an xml parser. parses XML and invokes callback methods of a MarkupHandler

Field Summary
  val handle: ConstructingHandler
     the handler of the markup

Method Summary
abstract def init: Unit
     this method should assign the first character of the input to ch
abstract def nextch: Unit
     this method assign the next character to ch and advances in input
  def reportSyntaxError(str: String): Unit
     report a syntax error

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

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

Methods inherited from scala/xml/parsing/MarkupParser-class
aMap, appendText, cbuf, ch, content, defaultURI, element, element1, lookupURI, noAttribs, noChildren, pos, preserveWS, putChar, tmppos, xAttributeValue, xAttributes, xCharData, xCharRef, xComment, xEQ, xEndTag, xName, xProcInstr, xSpace, xSpaceOpt, xTag, xText, xToken

Field Detail

handle

  val handle: ConstructingHandler
the handler of the markup
Method Detail

reportSyntaxError

  def reportSyntaxError(str: String): Unit
report a syntax error

nextch

  abstract def nextch: Unit
this method assign the next character to ch and advances in input

init

  abstract def init: Unit
this method should assign the first character of the input to ch