/* * 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 element http://www.opengis.net/ogc:FID. * *

*

 *         
 *  <xsd:element name="FID">
 *      <xsd:complexType/>
 *  </xsd:element>
 *
 *          
 *         
*

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