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

net.datastream.schemas.mp_fields.MAPACETATE Maven / Gradle / Ivy


package net.datastream.schemas.mp_fields;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Classe Java pour anonymous complex type. * *

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ACETATETYPE" type="{http://schemas.datastream.net/MP_fields}ACETATETYPE_Type"/>
 *         <element name="FROMCOORDINATE" type="{http://schemas.datastream.net/MP_fields}MAPCOORDINATE_Type"/>
 *         <element name="TOCOORDINATE" type="{http://schemas.datastream.net/MP_fields}MAPCOORDINATE_Type" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "acetatetype", "fromcoordinate", "tocoordinate" }) @XmlRootElement(name = "MAPACETATE") public class MAPACETATE { @XmlElement(name = "ACETATETYPE", required = true) @XmlSchemaType(name = "string") protected ACETATETYPE_Type acetatetype; @XmlElement(name = "FROMCOORDINATE", required = true) protected MAPCOORDINATE_Type fromcoordinate; @XmlElement(name = "TOCOORDINATE") protected MAPCOORDINATE_Type tocoordinate; /** * Obtient la valeur de la propriété acetatetype. * * @return * possible object is * {@link ACETATETYPE_Type } * */ public ACETATETYPE_Type getACETATETYPE() { return acetatetype; } /** * Définit la valeur de la propriété acetatetype. * * @param value * allowed object is * {@link ACETATETYPE_Type } * */ public void setACETATETYPE(ACETATETYPE_Type value) { this.acetatetype = value; } /** * Obtient la valeur de la propriété fromcoordinate. * * @return * possible object is * {@link MAPCOORDINATE_Type } * */ public MAPCOORDINATE_Type getFROMCOORDINATE() { return fromcoordinate; } /** * Définit la valeur de la propriété fromcoordinate. * * @param value * allowed object is * {@link MAPCOORDINATE_Type } * */ public void setFROMCOORDINATE(MAPCOORDINATE_Type value) { this.fromcoordinate = value; } /** * Obtient la valeur de la propriété tocoordinate. * * @return * possible object is * {@link MAPCOORDINATE_Type } * */ public MAPCOORDINATE_Type getTOCOORDINATE() { return tocoordinate; } /** * Définit la valeur de la propriété tocoordinate. * * @param value * allowed object is * {@link MAPCOORDINATE_Type } * */ public void setTOCOORDINATE(MAPCOORDINATE_Type value) { this.tocoordinate = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy