trait XMLLoader[T <: Node] extends AnyRef
Presents collection of XML loading methods which use the parser created by "def parser".
- Alphabetic
- By Inheritance
- XMLLoader
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
- def adapter: FactoryAdapter
- def load(url: URL): T
- def load(source: InputSource): T
- def load(sysID: String): T
- def load(reader: Reader): T
-
def
load(is: InputStream): T
loads XML from given InputStream, Reader, sysID, InputSource, or URL.
- def loadFile(name: String): T
- def loadFile(fd: FileDescriptor): T
-
def
loadFile(file: File): T
Loads XML from the given file, file descriptor, or filename.
-
def
loadString(string: String): T
Loads XML from the given String.
-
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.
- def parser: SAXParser