01: //$HeadURL: https://svn.wald.intevation.org/svn/deegree/base/trunk/src/org/deegree/graphics/sld/NamedLayer.java $
02: /*---------------- FILE HEADER ------------------------------------------
03:
04: This file is part of deegree.
05: Copyright (C) 2001-2008 by:
06: EXSE, Department of Geography, University of Bonn
07: http://www.giub.uni-bonn.de/deegree/
08: lat/lon GmbH
09: http://www.lat-lon.de
10:
11: This library is free software; you can redistribute it and/or
12: modify it under the terms of the GNU Lesser General Public
13: License as published by the Free Software Foundation; either
14: version 2.1 of the License, or (at your option) any later version.
15:
16: This library is distributed in the hope that it will be useful,
17: but WITHOUT ANY WARRANTY; without even the implied warranty of
18: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19: Lesser General Public License for more details.
20:
21: You should have received a copy of the GNU Lesser General Public
22: License along with this library; if not, write to the Free Software
23: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24:
25: Contact:
26:
27: Andreas Poth
28: lat/lon GmbH
29: Aennchenstr. 19
30: 53115 Bonn
31: Germany
32: E-Mail: poth@lat-lon.de
33:
34: Prof. Dr. Klaus Greve
35: Department of Geography
36: University of Bonn
37: Meckenheimer Allee 166
38: 53115 Bonn
39: Germany
40: E-Mail: greve@giub.uni-bonn.de
41:
42:
43: ---------------------------------------------------------------------------*/
44: package org.deegree.graphics.sld;
45:
46: import org.deegree.framework.xml.Marshallable;
47:
48: /**
49: * A NamedLayer uses the "name" attribute to identify a layer known to the WMS and can contain zero
50: * or more styles, either NamedStyles or UserStyles. In the absence of any styles the default style
51: * for the layer is used.
52: * <p>
53: * ----------------------------------------------------------------------
54: * </p>
55: *
56: * @author <a href="mailto:k.lupp@web.de">Katharina Lupp</a>
57: * @version $Revision: 9340 $ $Date: 2007-12-27 04:32:12 -0800 (Thu, 27 Dec 2007) $
58: */
59: public class NamedLayer extends AbstractLayer implements Marshallable {
60: /**
61: * constructor initializing the class with the <NamedLayer>
62: * @param name
63: * @param layerFeatureConstraints
64: * @param styles
65: */
66: public NamedLayer(String name,
67: LayerFeatureConstraints layerFeatureConstraints,
68: AbstractStyle[] styles) {
69: super (name, layerFeatureConstraints, styles);
70: }
71:
72: /**
73: * exports the content of the Font as XML formated String
74: *
75: * @return xml representation of the Font
76: */
77: public String exportAsXML() {
78:
79: StringBuffer sb = new StringBuffer(1000);
80: sb.append("<NamedLayer>");
81: sb.append("<Name>").append(name).append("</Name>");
82:
83: if (layerFeatureConstraints != null) {
84: sb.append(((Marshallable) layerFeatureConstraints)
85: .exportAsXML());
86: }
87:
88: for (int i = 0; i < styles.size(); i++) {
89: sb.append(((Marshallable) styles.get(i)).exportAsXML());
90: }
91: sb.append("</NamedLayer>");
92:
93: return sb.toString();
94: }
95: }
|