/* * GeoTools - OpenSource mapping toolkit * http://geotools.org * (C) 2002-2006, GeoTools Project Managment Committee (PMC) * * 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.filter.v1_1; import org.geotools.xml.*; import org.opengis.filter.FilterFactory; import javax.xml.namespace.QName; /** * Binding object for the type http://www.opengis.net/ogc:ComparisonOperatorsType. * *

*

 *         
 *  <xsd:complexType name="ComparisonOperatorsType">
 *      <xsd:sequence maxOccurs="unbounded">
 *          <xsd:element name="ComparisonOperator" type="ogc:ComparisonOperatorType"/>
 *      </xsd:sequence>
 *  </xsd:complexType>
 *
 *          
 *         
*

* * @generated */ public class ComparisonOperatorsTypeBinding extends AbstractComplexBinding { FilterFactory filterfactory; public ComparisonOperatorsTypeBinding(FilterFactory filterfactory) { this.filterfactory = filterfactory; } /** * @generated */ public QName getTarget() { return OGC.COMPARISONOPERATORSTYPE; } /** * * * * @generated modifiable */ public Class getType() { return null; } /** * * * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { //TODO: implement return null; } }