All Downloads are FREE. Search and download functionalities are using the official Maven repository.

energyml.common2_1.ProjectedGmlCrs Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.10.13 at 08:02:05 PM UTC 
//


package energyml.common2_1;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import net.opengis.gml._3.ProjectedCRSType;


/**
 * This is the Energistics encapsulation of the ProjectedCrs type from GML. 
 * 
 * 

Java class for ProjectedGmlCrs complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ProjectedGmlCrs">
 *   <complexContent>
 *     <extension base="{http://www.energistics.org/energyml/data/commonv2}AbstractProjectedCrs">
 *       <sequence>
 *         <element name="GmlProjectedCrsDefinition" type="{http://www.opengis.net/gml/3.2}ProjectedCRSType"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProjectedGmlCrs", propOrder = { "gmlProjectedCrsDefinition" }) public class ProjectedGmlCrs extends AbstractProjectedCrs { @XmlElement(name = "GmlProjectedCrsDefinition", required = true) protected ProjectedCRSType gmlProjectedCrsDefinition; /** * Gets the value of the gmlProjectedCrsDefinition property. * * @return * possible object is * {@link ProjectedCRSType } * */ public ProjectedCRSType getGmlProjectedCrsDefinition() { return gmlProjectedCrsDefinition; } /** * Sets the value of the gmlProjectedCrsDefinition property. * * @param value * allowed object is * {@link ProjectedCRSType } * */ public void setGmlProjectedCrsDefinition(ProjectedCRSType value) { this.gmlProjectedCrsDefinition = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy