/* * 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.se.v1_1.bindings; import org.geotools.se.v1_1.SE; import org.geotools.sld.bindings.SLDParameterValueTypeBinding; import org.geotools.xml.*; import org.opengis.filter.FilterFactory; import javax.xml.namespace.QName; /** * Binding object for the type http://www.opengis.net/se:ParameterValueType. * * <p> * * <pre> * <code> * <xsd:complexType mixed="true" name="ParameterValueType"> * <xsd:annotation> * <xsd:documentation> * The "ParameterValueType" uses WFS-Filter expressions to give * values for SE graphic parameters. A "mixed" element-content * model is used with textual substitution for values. * </xsd:documentation> * </xsd:annotation> * <xsd:sequence maxOccurs="unbounded" minOccurs="0"> * <xsd:element ref="ogc:expression"/> * </xsd:sequence> * </xsd:complexType> * * </code> * </pre> * * </p> * * @generated * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/extension/xsd/xsd-sld/src/main/java/org/geotools/se/v1_1/bindings/ParameterValueTypeBinding.java $ */ public class ParameterValueTypeBinding extends SLDParameterValueTypeBinding { public ParameterValueTypeBinding(FilterFactory filterFactory) { super(filterFactory); } /** * @generated */ public QName getTarget() { return SE.ParameterValueType; } }