/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2010, Geomatys * * 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; either * version 2.1 of the License, or (at your option) any later version. * * 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.geotoolkit.data.kml.model; /** * <p>This interface maps LatLonAltBox element.</p> * * <p>Type of the KML element is an extension of AbstractLatLonBoxType type. But there is * no substitution group corresponding to this abstract type. LatLonAltBox is member of * AbstractObjectSubstitution Group.</p> * * <p>This interface considers logical to inherit from AbstractLatLonBox interface which both * contains AbstractLatLonBoxType mapping and extends AbstractObject.</p> * * <pre> * <element name="LatLonAltBox" type="kml:LatLonAltBoxType" substitutionGroup="kml:AbstractObjectGroup"/> * * <complexType name="LatLonAltBoxType" final="#all"> * <complexContent> * <extension base="kml:AbstractLatLonBoxType"> * <sequence> * <element ref="kml:minAltitude" minOccurs="0"/> * <element ref="kml:maxAltitude" minOccurs="0"/> * <element ref="kml:altitudeModeGroup" minOccurs="0"/> * <element ref="kml:LatLonAltBoxSimpleExtensionGroup" minOccurs="0" maxOccurs="unbounded"/> * <element ref="kml:LatLonAltBoxObjectExtensionGroup" minOccurs="0" maxOccurs="unbounded"/> * </sequence> * </extension> * </complexContent> * </complexType> * * <element name="LatLonAltBoxSimpleExtensionGroup" abstract="true" type="anySimpleType"/> * <element name="LatLonAltBoxObjectExtensionGroup" abstract="true" substitutionGroup="kml:AbstractObjectGroup"/> * </pre> * * @author Samuel Andrés * @module */ public interface LatLonAltBox extends AbstractLatLonBox{ /** * * @return */ double getMinAltitude(); /** * * @return */ double getMaxAltitude(); /** * * @return */ AltitudeMode getAltitudeMode(); /** * * @param minAltitude */ void setMinAltitude(double minAltitude); /** * * @param maxAltitude */ void setMaxAltitude(double maxAltitude); /** * * @param altitudeMode */ void setAltitudeMode(AltitudeMode altitudeMode); }