Statistics
| Revision:

svn-gvsig-desktop / branches / v02_desarrollo / libraries / org.gvsig.sldsupport / org.gvsig.sldsupport.lib / org.gvsig.sldsupport.lib.api / src / main / java / org / gvsig / sldsupport / version / sld1_0_0 / SLDExternalGraphic1_0_0.java @ 40749

History | View | Annotate | Download (3.88 KB)

1
/* gvSIG. Sistema de Informaci�n Geogr�fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib��ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41
package org.gvsig.sldsupport.version.sld1_0_0;
42

    
43
import java.io.IOException;
44
import java.net.URL;
45

    
46
import org.gvsig.sldsupport.graphic.SLDExternalGraphic;
47
import org.gvsig.sldsupport.util.SLDTags;
48
import org.gvsig.sldsupport.util.XmlBuilder;
49
import org.xmlpull.v1.XmlPullParser;
50
import org.xmlpull.v1.XmlPullParserException;
51

    
52

    
53
/**
54
 * Implements the ExternalGraphic element of an SLD implementation specification
55
 * (version 1.0.0).<p>
56
 * The ExternalGraphic element allows a reference to be made to an external graphic
57
 * file with a Web URL. The onlineResource sub-element gives the URL and the format
58
 * sub-element identifies the expected document MIME type of a succesful fetch. Knowing
59
 * the MIME type in advance allows the styler to select the best-supported format
60
 * from the list of URLs with the equivalent content. Users should avoid referencing
61
 * external graphics that may change at arbitrary times. Graphic should be static
62
 * when al all possible.
63
 *
64
 * @see http://portal.opengeospatial.org/files/?artifact_id=1188
65
 *
66
 * @author pepe vidal salvador - jose.vidal.salvador@iver.es
67
*/
68
public class SLDExternalGraphic1_0_0 extends SLDExternalGraphic {
69

    
70
        
71
        public void parse(XmlPullParser parser, int cuTag, String expressionType)
72
                        throws IOException, XmlPullParserException  {
73
                int currentTag;
74
                boolean end = false;
75

    
76
                parser.require(XmlPullParser.START_TAG, null, SLDTags.EXTERNALGRAPHIC);
77
                currentTag = parser.next();
78

    
79
                while (!end)
80
                {
81
                        switch(currentTag)
82
                        {
83
                        case XmlPullParser.START_TAG:
84
                                if (parser.getName().compareTo(SLDTags.ONLINE_RESOURCE)==0) {
85
                                        for (int i = 0; i < parser.getAttributeCount(); i++) {
86
                                                if (parser.getAttributeName(i).compareTo(SLDTags.XLINK_HREF) == 0) {
87
                                                        URL myURL = new URL(parser.getAttributeValue(i));
88
                                                        addOnlineResource(myURL);
89
                                                }
90
                                        }
91
                                }
92
                                else if (parser.getName().compareTo(SLDTags.FORMAT)==0) {
93
                                        setFormat(parser.nextText());
94
                                }
95
                                break;
96
                        case XmlPullParser.END_TAG:
97
                                if (parser.getName().compareTo(SLDTags.EXTERNALGRAPHIC) == 0)
98
                                        end = true;
99
                                break;
100
                        case XmlPullParser.TEXT:
101
                                break;
102
                        }
103
                        if (!end)
104
                                currentTag = parser.next();
105
                }
106

    
107
                parser.require(XmlPullParser.END_TAG, null, SLDTags.EXTERNALGRAPHIC);
108

    
109
        }
110

    
111
        public String toXML() {
112
                XmlBuilder xmlBuilder = new XmlBuilder();
113
                xmlBuilder.openTag(SLDTags.EXTERNALGRAPHIC);
114
                xmlBuilder.writeRaw("<"+SLDTags.ONLINE_RESOURCE+" "+SLDTags.XLINK_HREF+"= \""+
115
                                getOnlineResource().get(0)+"\"/>");
116
                if(getFormat() != null) {
117
                        xmlBuilder.writeTag(SLDTags.FORMAT, getFormat());
118
                }
119
                xmlBuilder.closeTag();
120
                return xmlBuilder.getXML();
121
        }
122
}