X-Git-Url: https://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=tim%2Fprune%2Fload%2Fxml%2FXmlFileLoader.java;h=987841e6935cc4c680a34d5b7db2ac3c24dd8fe5;hp=a607b22a2803b1b0cc09708ab6b6ef0390443681;hb=da0b1f449260a0b4a94318006382a9039726ef3e;hpb=5625a1abadb5f2ca5f017fe7dbda1d5141cb637b diff --git a/tim/prune/load/xml/XmlFileLoader.java b/tim/prune/load/xml/XmlFileLoader.java index a607b22..987841e 100644 --- a/tim/prune/load/xml/XmlFileLoader.java +++ b/tim/prune/load/xml/XmlFileLoader.java @@ -39,8 +39,8 @@ public class XmlFileLoader extends DefaultHandler implements Runnable /** - * Open the selected file and show the GUI dialog - * to select load options + * Open the selected file and show the GUI dialog to select load options + * @param inFile File to open */ public void openFile(File inFile) { @@ -94,7 +94,7 @@ public class XmlFileLoader extends DefaultHandler implements Runnable * @see org.xml.sax.ContentHandler#startElement(java.lang.String, java.lang.String, java.lang.String, org.xml.sax.Attributes) */ public void startElement(String uri, String localName, String qName, - Attributes attributes) throws SAXException + Attributes attributes) throws SAXException { // Check for "kml" or "gpx" tags if (_handler == null) @@ -120,7 +120,7 @@ public class XmlFileLoader extends DefaultHandler implements Runnable * @see org.xml.sax.ContentHandler#characters(char[], int, int) */ public void characters(char[] ch, int start, int length) - throws SAXException + throws SAXException { if (_handler != null) { @@ -136,7 +136,7 @@ public class XmlFileLoader extends DefaultHandler implements Runnable * @see org.xml.sax.ContentHandler#endElement(java.lang.String, java.lang.String, java.lang.String) */ public void endElement(String uri, String localName, String qName) - throws SAXException + throws SAXException { if (_handler != null) {