/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2002-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.filter.v1_0; import org.picocontainer.MutablePicoContainer; import javax.xml.namespace.QName; import org.opengis.filter.FilterFactory2; import org.opengis.filter.spatial.DistanceBufferOperator; import org.geotools.xml.AbstractComplexBinding; import org.geotools.xml.ElementInstance; import org.geotools.xml.Node; /** * Binding object for the type http://www.opengis.net/ogc:DistanceBufferType. * * <p> * <pre> * <code> * <xsd:complexType name="DistanceBufferType"> * <xsd:complexContent> * <xsd:extension base="ogc:SpatialOpsType"> * <xsd:sequence> * <xsd:element ref="ogc:PropertyName"/> * <xsd:element ref="gml:_Geometry"/> * <xsd:element name="Distance" type="ogc:DistanceType"/> * </xsd:sequence> * </xsd:extension> * </xsd:complexContent> * </xsd:complexType> * * </code> * </pre> * </p> * * @generated * * * @source $URL$ */ public class OGCDistanceBufferTypeBinding extends AbstractComplexBinding { private FilterFactory2 factory; public OGCDistanceBufferTypeBinding(FilterFactory2 factory) { this.factory = factory; } /** * @generated */ public QName getTarget() { return OGC.DistanceBufferType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return DistanceBufferOperator.class; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public void initialize(ElementInstance instance, Node node, MutablePicoContainer context) { } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { //implemented by element bindings return null; // //TODO: replace with element bindings // Number distance = (Number) node.getChildValue(Number.class); // // PropertyName propertyName = (PropertyName) node.getChildValue(PropertyName.class); // Literal geometry = factory.literal(node.getChildValue(Geometry.class)); // // String name = instance.getName(); // // //<xsd:element name="DWithin" substitutionGroup="ogc:spatialOps" type="ogc:DistanceBufferType"/> // if ("DWithin".equals(name)) { // //TOOD: units // return factory.dwithin(propertyName, geometry, distance.doubleValue(), null); // } // //<xsd:element name="Beyond" substitutionGroup="ogc:spatialOps" type="ogc:DistanceBufferType"/> // else if ("Beyond".equals(name)) { // //TODO: units // return factory.beyond(propertyName, geometry, distance.doubleValue(), null); // } else { // throw new IllegalArgumentException("Unknown - " + name); // } } public Object getProperty(Object object, QName name) throws Exception { DistanceBufferOperator operator = (DistanceBufferOperator) object; Object property = OGCUtils.property(operator.getExpression1(), operator.getExpression2(), name); if (property != null) { return property; } if ("Distance".equals(name.getLocalPart())) { return new Double(operator.getDistance()); } return null; } }