summaryrefslogtreecommitdiff
path: root/src/library/scala/xml/package.scala
blob: 901334ba580da0499a3ea28b02e423a22c3e51b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2011, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala

package object xml {
  val XercesClassName = "org.apache.xerces.parsers.SAXParser"

  type SAXException       = org.xml.sax.SAXException
  type SAXParseException  = org.xml.sax.SAXParseException
  type EntityResolver     = org.xml.sax.EntityResolver
  type InputSource        = org.xml.sax.InputSource
  type SAXParser          = javax.xml.parsers.SAXParser
}