]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/load/xml/XmlFileLoader.java
Version 4, January 2008
[GpsPrune.git] / tim / prune / load / xml / XmlFileLoader.java
index a607b22a2803b1b0cc09708ab6b6ef0390443681..987841e6935cc4c680a34d5b7db2ac3c24dd8fe5 100644 (file)
@@ -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)
                {