// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.08.10 um 09:13:50 PM CEST // package net.opengis.gml; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * An image datum defines the origin of an image coordinate reference system, and is used in a local context only. For more information, see OGC Abstract Specification Topic 2. * * <p>Java-Klasse für ImageDatumType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="ImageDatumType"> * <complexContent> * <extension base="{http://www.opengis.net/gml}AbstractDatumType"> * <sequence> * <element ref="{http://www.opengis.net/gml}pixelInCell"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImageDatumType", propOrder = { "pixelInCell" }) public class ImageDatumType extends AbstractDatumType { @XmlElement(required = true) protected PixelInCellType pixelInCell; /** * Ruft den Wert der pixelInCell-Eigenschaft ab. * * @return * possible object is * {@link PixelInCellType } * */ public PixelInCellType getPixelInCell() { return pixelInCell; } /** * Legt den Wert der pixelInCell-Eigenschaft fest. * * @param value * allowed object is * {@link PixelInCellType } * */ public void setPixelInCell(PixelInCellType value) { this.pixelInCell = value; } public boolean isSetPixelInCell() { return (this.pixelInCell!= null); } }