Package jadex.xml.reader
Class XMLReaderFactory
- java.lang.Object
-
- jadex.xml.reader.XMLReaderFactory
-
- Direct Known Subclasses:
XMLReaderFactoryDesktop
public abstract class XMLReaderFactory extends java.lang.Object
Factory to create XML Readers.
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
XMLReaderFactory()
Constructor
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract AReader
createReader()
Creates a new default XML Reader.abstract AReader
createReader(boolean bulklink)
Creates a new XML Readerabstract AReader
createReader(boolean bulklink, boolean validate, boolean coalescing, XMLReporter reporter)
Creates a new XML Readerabstract AReader
createReader(boolean bulklink, boolean validate, XMLReporter reporter)
Creates a new XML Readerstatic XMLReaderFactory
getInstance()
Returns the instance of this factory.
-
-
-
Method Detail
-
getInstance
public static XMLReaderFactory getInstance()
Returns the instance of this factory.- Returns:
- the factory instance
-
createReader
public abstract AReader createReader()
Creates a new default XML Reader.- Returns:
- reader
-
createReader
public abstract AReader createReader(boolean bulklink)
Creates a new XML Reader
-
createReader
public abstract AReader createReader(boolean bulklink, boolean validate, XMLReporter reporter)
Creates a new XML Reader
-
createReader
public abstract AReader createReader(boolean bulklink, boolean validate, boolean coalescing, XMLReporter reporter)
Creates a new XML Reader
-
-