Statistics
| Revision:

svn-gvsig-desktop / branches / v10 / libraries / libGPE-KML / src / org / gvsig / gpe / kml / parser / v21 / features / StyleBinding.java @ 18284

History | View | Annotate | Download (3.27 KB)

1
package org.gvsig.gpe.kml.parser.v21.features;
2

    
3
import java.io.IOException;
4

    
5
import org.gvsig.gpe.kml.GPEDeafultKmlParser;
6
import org.gvsig.gpe.kml.KmlTags;
7
import org.kxml2.io.KXmlParser;
8
import org.xmlpull.v1.XmlPullParser;
9
import org.xmlpull.v1.XmlPullParserException;
10

    
11
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
12
 *
13
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
14
 *
15
 * This program is free software; you can redistribute it and/or
16
 * modify it under the terms of the GNU General Public License
17
 * as published by the Free Software Foundation; either version 2
18
 * of the License, or (at your option) any later version.
19
 *
20
 * This program is distributed in the hope that it will be useful,
21
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23
 * GNU General Public License for more details.
24
 *
25
 * You should have received a copy of the GNU General Public License
26
 * along with this program; if not, write to the Free Software
27
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
28
 *
29
 * For more information, contact:
30
 *
31
 *  Generalitat Valenciana
32
 *   Conselleria d'Infraestructures i Transport
33
 *   Av. Blasco Ib??ez, 50
34
 *   46010 VALENCIA
35
 *   SPAIN
36
 *
37
 *      +34 963862235
38
 *   gvsig@gva.es
39
 *      www.gvsig.gva.es
40
 *
41
 *    or
42
 *
43
 *   IVER T.I. S.A
44
 *   Salamanca 50
45
 *   46005 Valencia
46
 *   Spain
47
 *
48
 *   +34 963163400
49
 *   dac@iver.es
50
 */
51
/* CVS MESSAGES:
52
 *
53
 * $Id: StyleBinding.java 357 2008-01-09 17:50:08Z jpiera $
54
 * $Log$
55
 * Revision 1.2  2007/06/07 14:53:59  jorpiell
56
 * Add the schema support
57
 *
58
 * Revision 1.1  2007/05/11 07:06:29  jorpiell
59
 * Refactoring of some package names
60
 *
61
 * Revision 1.2  2007/05/08 08:22:37  jorpiell
62
 * Add comments to create javadocs
63
 *
64
 * Revision 1.1  2007/04/13 13:16:21  jorpiell
65
 * Add KML reading support
66
 *
67
 *
68
 */
69
/**
70
 * This class parses a Style tag. Example:
71
 * <p>
72
 * <pre>
73
 * <code>
74
 * &lt;Style id="globeIcon"&gt;
75
 * &lt;IconStyle&gt;
76
 * &lt;Icon&gt;
77
 * &lt;href&gt;http://maps.google.com/mapfiles/kml/pal3/icon19.png&lt;/href&gt;
78
 * &lt;/Icon&gt;
79
 * &lt;/IconStyle&gt;
80
 * &lt;LineStyle&gt;
81
 * &lt;width&gt;2&lt;/width&gt;
82
 * &lt;/LineStyle&gt;
83
 * &lt;/Style&gt;
84
 * </code>
85
 * </pre>
86
 * </p>
87
 * @author Jorge Piera LLodr? (jorge.piera@iver.es)
88
 * @see http://code.google.com/apis/kml/documentation/kml_tags_21.html#style
89
 */
90
public class StyleBinding {
91

    
92
        /**
93
         * It parses the Style tag
94
         * @param parser
95
         * The XML parser
96
         * @param handler
97
         * The GPE parser that contains the content handler and
98
         * the error handler
99
         * @throws IOException 
100
         * @throws XmlPullParserException 
101
         * @throws XmlPullParserException
102
         * @throws IOException
103
         */
104
        public static void parse(XmlPullParser parser,GPEDeafultKmlParser handler) throws XmlPullParserException, IOException{
105
                boolean endFeature = false;
106
                int currentTag;                                
107

    
108
                String tag = parser.getName();
109
                currentTag = parser.getEventType();
110

    
111
                while (!endFeature){
112
                        switch(currentTag){
113
                        case XmlPullParser.START_TAG:
114

    
115
                                break;
116
                        case KXmlParser.END_TAG:
117
                                if (tag.compareTo(KmlTags.STYLE) == 0){
118
                                        endFeature = true;
119
                                }
120
                                break;
121
                        case KXmlParser.TEXT:                                        
122

    
123
                                break;
124
                        }
125
                        if (!endFeature){                                        
126
                                currentTag = parser.next();
127
                                tag = parser.getName();
128
                        }
129
                }                        
130
        }
131
}