/* * 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.kml.bindings; import javax.xml.namespace.QName; import com.vividsolutions.jts.geom.Envelope; import org.geotools.kml.KML; import org.geotools.xml.AbstractComplexBinding; import org.geotools.xml.ElementInstance; import org.geotools.xml.Node; /** * Binding object for the type http://earth.google.com/kml/2.1:LatLonBoxType. * * <p> * <pre> * <code> * <complexType name="LatLonBoxType"> * <complexContent> * <extension base="kml:ObjectType"> * <sequence> * <annotation> * <documentation><![CDATA[Yes, north/south range to 180/-180]]></documentation> * </annotation> * <element default="180.0" minOccurs="0" name="north" type="kml:angle180"/> * <element default="-180.0" minOccurs="0" name="south" type="kml:angle180"/> * <element default="180.0" minOccurs="0" name="east" type="kml:angle180"/> * <element default="-180.0" minOccurs="0" name="west" type="kml:angle180"/> * <element default="0" minOccurs="0" name="rotation" type="kml:angle180"/> * </sequence> * </extension> * </complexContent> * </complexType> * * </code> * </pre> * </p> * * @generated * * * @source $URL$ */ public class LatLonBoxTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return KML.LatLonBoxType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return Envelope.class; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { //<element default="180.0" minOccurs="0" name="north" type="kml:angle180"/> Double n = (Double) node.getChildValue("north", Double.valueOf(180d)); //<element default="-180.0" minOccurs="0" name="south" type="kml:angle180"/> Double s = (Double) node.getChildValue("south", Double.valueOf(-180d)); //<element default="180.0" minOccurs="0" name="east" type="kml:angle180"/> Double e = (Double) node.getChildValue("east", Double.valueOf(180d)); //<element default="-180.0" minOccurs="0" name="west" type="kml:angle180"/> Double w = (Double) node.getChildValue("west", Double.valueOf(-180d)); return new Envelope(w.doubleValue(), e.doubleValue(), s.doubleValue(), n.doubleValue()); } }