Packages

t

scala.xml.factory

XMLLoader

trait XMLLoader[T <: Node] extends AnyRef

Presents collection of XML loading methods which use the parser created by "def parser".

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. XMLLoader
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def adapter: FactoryAdapter
  2. def load(url: URL): T
  3. def load(source: InputSource): T
  4. def load(sysID: String): T
  5. def load(reader: Reader): T
  6. def load(is: InputStream): T

    loads XML from given InputStream, Reader, sysID, InputSource, or URL.

  7. def loadFile(name: String): T
  8. def loadFile(fd: FileDescriptor): T
  9. def loadFile(file: File): T

    Loads XML from the given file, file descriptor, or filename.

  10. def loadString(string: String): T

    Loads XML from the given String.

  11. def loadXML(source: InputSource, parser: SAXParser): T

    Loads XML from the given InputSource, using the supplied parser.

    Loads XML from the given InputSource, using the supplied parser. The methods available in scala.xml.XML use the XML parser in the JDK.

  12. def parser: SAXParser