/* * 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.geopkg.wps.xml; import java.math.BigDecimal; import org.geotools.xml.*; import com.vividsolutions.jts.geom.Envelope; import javax.xml.namespace.QName; /** * Binding object for the type http://www.opengis.net/gpkg:bboxtype. * * <p> * <pre> * <code> * <?xml version="1.0" encoding="UTF-8"?><xs:complexType name="bboxtype" xmlns:xs="http://www.w3.org/2001/XMLSchema"> * <xs:sequence> * <xs:element name="minx" type="xs:decimal"/> * <xs:element name="miny" type="xs:decimal"/> * <xs:element name="maxx" type="xs:decimal"/> * <xs:element name="maxy" type="xs:decimal"/> * </xs:sequence> * </xs:complexType> * * </code> * </pre> * </p> * * @generated */ public class BboxtypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return GPKG.bboxtype; } /** * <!-- 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 { double minx = ((BigDecimal) node.getChildValue("minx")).doubleValue(); double miny = ((BigDecimal) node.getChildValue("miny")).doubleValue(); double maxx = ((BigDecimal) node.getChildValue("maxx")).doubleValue(); double maxy = ((BigDecimal) node.getChildValue("maxy")).doubleValue(); return new Envelope(minx, maxx, miny, maxy); } }