/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2002-2010, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.sld.v1_1.bindings; import org.geotools.sld.bindings.SLDUserStyleBinding; import org.geotools.sld.v1_1.SLD; import org.geotools.styling.Description; import org.geotools.styling.Style; import org.geotools.styling.StyleFactory; import org.geotools.xml.*; import javax.xml.namespace.QName; /** * Binding object for the element http://www.opengis.net/sld:UserStyle. * * <p> * * <pre> * <code> * <xsd:element name="UserStyle"> * <xsd:annotation> * <xsd:documentation> * A UserStyle allows user-defined styling and is semantically * equivalent to a WMS named style. External FeatureTypeStyles or * CoverageStyles can be linked using an OnlineResource-element * </xsd:documentation> * </xsd:annotation> * <xsd:complexType> * <xsd:sequence> * <xsd:element minOccurs="0" ref="se:Name"/> * <xsd:element minOccurs="0" ref="se:Description"/> * <xsd:element minOccurs="0" ref="sld:IsDefault"/> * <xsd:choice maxOccurs="unbounded"> * <xsd:element ref="se:FeatureTypeStyle"/> * <xsd:element ref="se:CoverageStyle"/> * <xsd:element ref="se:OnlineResource"/> * </xsd:choice> * </xsd:sequence> * </xsd:complexType> * </xsd:element> * * </code> * </pre> * * </p> * * @generated * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/extension/xsd/xsd-sld/src/main/java/org/geotools/sld/v1_1/bindings/UserStyleBinding.java $ */ public class UserStyleBinding extends SLDUserStyleBinding { public UserStyleBinding(StyleFactory styleFactory) { super(styleFactory); } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { Style style = (Style) super.parse(instance, node, value); if (node.hasChild("Description")) { Description desc = (Description) node.getChildValue("Description"); style.getDescription().setAbstract(desc.getAbstract()); style.getDescription().setTitle(desc.getTitle()); } //TODO: OnlineResource return style; } }