in scala/xml/dtd
class Scanner

class Scanner()
extends Object
with ScalaObject
with Tokens
Implementing classes or objects:
object Parser

Scanner for regexps (content models in DTD element declarations)

Field Summary
final val ENDCH: Char

Method Summary
final def acc(d: Char): Unit
final def accS(ds: Seq[Char]): Unit
final def initScanner(s: String): Unit
     initializes the scanner on input s
final def isIdentChar: Boolean
final def isSpace: Boolean
final def name: Int
final def next: Unit
final def nextToken: Unit
     scans the next token
final def readToken: Int
  var token: Int
  var value: String

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/dtd/Tokens-class
CHOICE, COMMA, EMPTY, END, LPAREN, NAME, OPT, PLUS, RPAREN, S, STAR, TOKEN_PCDATA, token2string

Field Detail

ENDCH

  final val ENDCH: Char
Method Detail

token

  var token: Int

value

  var value: String

initScanner

  final def initScanner(s: String): Unit
initializes the scanner on input s

nextToken

  final def nextToken: Unit
scans the next token

isIdentChar

  final def isIdentChar: Boolean

next

  final def next: Unit

acc

  final def acc(d: Char): Unit

accS

  final def accS(ds: Seq[Char]): Unit

isSpace

  final def isSpace: Boolean

readToken

  final def readToken: Int

name

  final def name: Int