Packages

object XML extends XMLLoader[Elem]

The object XML provides constants, and functions to load and save XML elements. Use this when data binding is not desired, i.e. when XML is handled using Symbol nodes.

Version

1.0, 25/04/2005

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

Value Members

  1. def adapter: FactoryAdapter
    Definition Classes
    XMLLoader
  2. val encoding: String
  3. val lang: String
  4. def load(url: URL): Elem
    Definition Classes
    XMLLoader
  5. def load(source: InputSource): Elem
    Definition Classes
    XMLLoader
  6. def load(sysID: String): Elem
    Definition Classes
    XMLLoader
  7. def load(reader: Reader): Elem
    Definition Classes
    XMLLoader
  8. def load(is: InputStream): Elem

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

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

    Definition Classes
    XMLLoader
  9. def loadFile(name: String): Elem
    Definition Classes
    XMLLoader
  10. def loadFile(fd: FileDescriptor): Elem
    Definition Classes
    XMLLoader
  11. def loadFile(file: File): Elem

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

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

    Definition Classes
    XMLLoader
  12. def loadString(string: String): Elem

    Loads XML from the given String.

    Loads XML from the given String.

    Definition Classes
    XMLLoader
  13. def loadXML(source: InputSource, parser: SAXParser): Elem

    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.

    Definition Classes
    XMLLoader
  14. val namespace: String
  15. def parser: SAXParser
    Definition Classes
    XMLLoader
  16. val preserve: String
  17. final def save(filename: String, node: Node, enc: String = encoding, xmlDecl: Boolean = false, doctype: DocType = null): Unit

    Saves a node to a file with given filename using given encoding optionally with xmldecl and doctype declaration.

    Saves a node to a file with given filename using given encoding optionally with xmldecl and doctype declaration.

    filename

    the filename

    node

    the xml node we want to write

    enc

    encoding to use

    xmlDecl

    if true, write xml declaration

    doctype

    if not null, write doctype declaration

  18. val space: String
  19. def withSAXParser(p: SAXParser): XMLLoader[Elem]

    Returns an XMLLoader whose load* methods will use the supplied SAXParser.

  20. final def write(w: Writer, node: Node, enc: String, xmlDecl: Boolean, doctype: DocType, minimizeTags: MinimizeMode.Value = MinimizeMode.Default): Unit

    Writes the given node using writer, optionally with xml decl and doctype.

    Writes the given node using writer, optionally with xml decl and doctype. It's the caller's responsibility to close the writer.

    w

    the writer

    node

    the xml node we want to write

    enc

    the string to be used in xmlDecl

    xmlDecl

    if true, write xml declaration

    doctype

    if not null, write doctype declaration

  21. val xml: String
  22. val xmlns: String