Statistics
| Revision:

root / trunk / libraries / libGPE-KML / src / org / gvsig / gpe / kml / bindings / header / HeaderBinding.java @ 11205

History | View | Annotate | Download (2.6 KB)

1
package org.gvsig.gpe.kml.bindings.header;
2

    
3
import org.gvsig.gpe.kml.GPEKmlParser;
4
import org.gvsig.gpe.kml.KmlTags;
5
import org.gvsig.gpe.kml.exceptions.KmlHeaderParseException;
6
import org.gvsig.gpe.kml.exceptions.KmlNotRootTagException;
7
import org.xmlpull.v1.XmlPullParser;
8

    
9
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
10
 *
11
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
12
 *
13
 * This program is free software; you can redistribute it and/or
14
 * modify it under the terms of the GNU General Public License
15
 * as published by the Free Software Foundation; either version 2
16
 * of the License, or (at your option) any later version.
17
 *
18
 * This program is distributed in the hope that it will be useful,
19
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
 * GNU General Public License for more details.
22
 *
23
 * You should have received a copy of the GNU General Public License
24
 * along with this program; if not, write to the Free Software
25
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
26
 *
27
 * For more information, contact:
28
 *
29
 *  Generalitat Valenciana
30
 *   Conselleria d'Infraestructures i Transport
31
 *   Av. Blasco Ib??ez, 50
32
 *   46010 VALENCIA
33
 *   SPAIN
34
 *
35
 *      +34 963862235
36
 *   gvsig@gva.es
37
 *      www.gvsig.gva.es
38
 *
39
 *    or
40
 *
41
 *   IVER T.I. S.A
42
 *   Salamanca 50
43
 *   46005 Valencia
44
 *   Spain
45
 *
46
 *   +34 963163400
47
 *   dac@iver.es
48
 */
49
/* CVS MESSAGES:
50
 *
51
 * $Id: HeaderBinding.java 11205 2007-04-13 13:16:21Z jorpiell $
52
 * $Log$
53
 * Revision 1.1  2007-04-13 13:16:21  jorpiell
54
 * Add KML reading support
55
 *
56
 * Revision 1.1  2007/03/07 08:19:10  jorpiell
57
 * Pasadas las clases de KML de libGPE-GML a libGPE-KML
58
 *
59
 * Revision 1.1  2007/02/28 11:48:31  csanchez
60
 * *** empty log message ***
61
 *
62
 * Revision 1.1  2007/02/20 10:53:20  jorpiell
63
 * A?adidos los proyectos de kml y gml antiguos
64
 *
65
 * Revision 1.1  2007/02/12 13:49:18  jorpiell
66
 * A?adido el driver de KML
67
 *
68
 *
69
 */
70
/**
71
 * @author Jorge Piera Llodr? (piera_jor@gva.es)
72
 */
73
public class HeaderBinding {
74
        
75
        /**
76
         * This method parses the kml header file
77
         * @throws KmlHeaderParseException
78
         */
79
        public static String parse(XmlPullParser parser,GPEKmlParser handler) throws KmlHeaderParseException{
80
                String namespace = KmlTags.UNKNOWN_VERSION;
81
                try {
82
                        parser.nextTag();
83
                        String name = parser.getName();
84
                        if (name.compareTo(KmlTags.ROOT) != 0){
85
                                throw new KmlNotRootTagException(name);
86
                        }
87
                        for (int i=0 ; i<parser.getAttributeCount() ; i++){
88
                                namespace = parser.getAttributeValue(i);                                
89
                        }
90
                } catch (Exception e) {
91
                        throw new KmlHeaderParseException(e);
92
                } 
93
                return namespace;
94
        }
95
}