Statistics
| Revision:

root / trunk / extensions / extSymbology / src / org / gvsig / remoteClient / sld / sld1_0_0 / SLDExternalGraphic1_0_0.java @ 20768

History | View | Annotate | Download (3.83 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.remoteClient.sld.sld1_0_0;
42

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

    
46
import org.gvsig.remoteClient.gml.schemas.XMLSchemaParser;
47
import org.gvsig.remoteClient.sld.SLDExternalGraphic;
48
import org.gvsig.remoteClient.sld.SLDTags;
49
import org.xmlpull.v1.XmlPullParserException;
50

    
51
import com.iver.cit.gvsig.fmap.rendering.XmlBuilder;
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(XMLSchemaParser parser, int cuTag, String expressionType)throws IOException, XmlPullParserException  {
72
                int currentTag;
73
                boolean end = false;
74

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

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

    
106
                parser.require(XMLSchemaParser.END_TAG, null, SLDTags.EXTERNALGRAPHIC);
107

    
108
        }
109

    
110
        public String toXML() {
111
                XmlBuilder xmlBuilder = new XmlBuilder();
112
                xmlBuilder.openTag(SLDTags.EXTERNALGRAPHIC);
113
                xmlBuilder.writeRaw("<"+SLDTags.ONLINE_RESOURCE+" "+SLDTags.XLINK_HREF+"= \""+
114
                                getOnlineResource().get(0)+"\"/>");
115
                xmlBuilder.closeTag();
116
                return xmlBuilder.getXML();
117
        }
118
}