Package org.openjump.core.rasterimage
Class GDALPamDataset
- java.lang.Object
-
- org.xml.sax.helpers.DefaultHandler
-
- org.openjump.core.rasterimage.GDALPamDataset
-
- All Implemented Interfaces:
ContentHandler
,DTDHandler
,EntityResolver
,ErrorHandler
public class GDALPamDataset extends DefaultHandler
- Author:
- AdL
-
-
Constructor Summary
Constructors Constructor Description GDALPamDataset()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
characters(char[] ac, int i, int j)
void
endElement(String uri, String localName, String qName)
Stats
readStatistics(File auxXmlFile)
void
startElement(String uri, String localName, String qName, Attributes attributes)
void
writeStatistics(File auxXmlFile, Stats stats)
void
writeStatisticsAndSRS(File auxXmlFile, SRSInfo srsInfo, Stats stats)
-
Methods inherited from class org.xml.sax.helpers.DefaultHandler
endDocument, endPrefixMapping, error, fatalError, ignorableWhitespace, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warning
-
-
-
-
Method Detail
-
readStatistics
public Stats readStatistics(File auxXmlFile) throws ParserConfigurationException, SAXException, IOException
-
writeStatistics
public void writeStatistics(File auxXmlFile, Stats stats) throws ParserConfigurationException, TransformerConfigurationException, TransformerException, SAXException, IOException
-
writeStatisticsAndSRS
public void writeStatisticsAndSRS(File auxXmlFile, SRSInfo srsInfo, Stats stats) throws ParserConfigurationException, TransformerConfigurationException, TransformerException, SAXException, IOException
-
startElement
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException
- Specified by:
startElement
in interfaceContentHandler
- Overrides:
startElement
in classDefaultHandler
- Throws:
SAXException
-
endElement
public void endElement(String uri, String localName, String qName) throws SAXException
- Specified by:
endElement
in interfaceContentHandler
- Overrides:
endElement
in classDefaultHandler
- Throws:
SAXException
-
characters
public void characters(char[] ac, int i, int j) throws SAXException
- Specified by:
characters
in interfaceContentHandler
- Overrides:
characters
in classDefaultHandler
- Throws:
SAXException
-
-