All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geotools.styling.NamedStyle Maven / Gradle / Ivy

/*
 *    GeoTools - The Open Source Java GIS Toolkit
 *    http://geotools.org
 *
 *    (C) 2003-2008, 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.styling;

/**
 * A NamedStyle is used to refer to a style that has a name in a WMS.
 *
 * 

A NamedStyle is a Style that has only Name, so all setters other than setName will throw an * UnsupportedOperationException The details of this object are taken from the OGC Styled-Layer Descriptor * Report (OGC 02-070) version 1.0.0.: * *


 * <xsd:element name="NamedStyle">
 *   <xsd:annotation>
 *     <xsd:documentation>
 *       A NamedStyle is used to refer to a style that has a name in a WMS.
 *     </xsd:documentation>
 *   </xsd:annotation>
 *   <xsd:complexType>
 *     <xsd:sequence>
 *       <xsd:element ref="sld:Name"/>
 *     </xsd:sequence>
 *   </xsd:complexType>
 * </xsd:element>
 * 
* * @author James Macgill */ public interface NamedStyle extends Style {}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy