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

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

There is a newer version: 12.1-4
Show newest version

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;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="LABELTYPE" type="{http://schemas.datastream.net/MP_fields}LABELTYPE_Type"/>
 *         <element name="LABELPOSITION" type="{http://schemas.datastream.net/MP_fields}MAPCOORDINATE_Type"/>
 *         <element name="LABELTEXT" type="{http://schemas.datastream.net/MP_fields}CODE1000_Type"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "labeltype", "labelposition", "labeltext" }) @XmlRootElement(name = "MAPLABEL") public class MAPLABEL { @XmlElement(name = "LABELTYPE", required = true) @XmlSchemaType(name = "string") protected LABELTYPE_Type labeltype; @XmlElement(name = "LABELPOSITION", required = true) protected MAPCOORDINATE_Type labelposition; @XmlElement(name = "LABELTEXT", required = true) protected String labeltext; /** * Gets the value of the labeltype property. * * @return * possible object is * {@link LABELTYPE_Type } * */ public LABELTYPE_Type getLABELTYPE() { return labeltype; } /** * Sets the value of the labeltype property. * * @param value * allowed object is * {@link LABELTYPE_Type } * */ public void setLABELTYPE(LABELTYPE_Type value) { this.labeltype = value; } /** * Gets the value of the labelposition property. * * @return * possible object is * {@link MAPCOORDINATE_Type } * */ public MAPCOORDINATE_Type getLABELPOSITION() { return labelposition; } /** * Sets the value of the labelposition property. * * @param value * allowed object is * {@link MAPCOORDINATE_Type } * */ public void setLABELPOSITION(MAPCOORDINATE_Type value) { this.labelposition = value; } /** * Gets the value of the labeltext property. * * @return * possible object is * {@link String } * */ public String getLABELTEXT() { return labeltext; } /** * Sets the value of the labeltext property. * * @param value * allowed object is * {@link String } * */ public void setLABELTEXT(String value) { this.labeltext = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy