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

eu.datex2.schema._2._2_0.VmsTextLine Maven / Gradle / Ivy

The newest version!

package eu.datex2.schema._2._2_0;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for VmsTextLine complex type. * *

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

 * <complexType name="VmsTextLine">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="vmsTextLine" type="{http://datex2.eu/schema/2/2_0}String"/>
 *         <element name="vmsTextLineLanguage" type="{http://datex2.eu/schema/2/2_0}Language" minOccurs="0"/>
 *         <element name="vmsTextLineColour" type="{http://datex2.eu/schema/2/2_0}ColourEnum" minOccurs="0"/>
 *         <element name="vmsTextLineFlashing" type="{http://datex2.eu/schema/2/2_0}Boolean" minOccurs="0"/>
 *         <element name="vmsTextLineHtml" type="{http://datex2.eu/schema/2/2_0}String" minOccurs="0"/>
 *         <element name="vmsTextLineExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VmsTextLine", propOrder = { "vmsTextLine", "vmsTextLineLanguage", "vmsTextLineColour", "vmsTextLineFlashing", "vmsTextLineHtml", "vmsTextLineExtension" }) public class VmsTextLine { @XmlElement(required = true) protected String vmsTextLine; @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "language") protected String vmsTextLineLanguage; @XmlSchemaType(name = "string") protected ColourEnum vmsTextLineColour; protected Boolean vmsTextLineFlashing; protected String vmsTextLineHtml; protected ExtensionType vmsTextLineExtension; /** * Gets the value of the vmsTextLine property. * * @return * possible object is * {@link String } * */ public String getVmsTextLine() { return vmsTextLine; } /** * Sets the value of the vmsTextLine property. * * @param value * allowed object is * {@link String } * */ public void setVmsTextLine(String value) { this.vmsTextLine = value; } /** * Gets the value of the vmsTextLineLanguage property. * * @return * possible object is * {@link String } * */ public String getVmsTextLineLanguage() { return vmsTextLineLanguage; } /** * Sets the value of the vmsTextLineLanguage property. * * @param value * allowed object is * {@link String } * */ public void setVmsTextLineLanguage(String value) { this.vmsTextLineLanguage = value; } /** * Gets the value of the vmsTextLineColour property. * * @return * possible object is * {@link ColourEnum } * */ public ColourEnum getVmsTextLineColour() { return vmsTextLineColour; } /** * Sets the value of the vmsTextLineColour property. * * @param value * allowed object is * {@link ColourEnum } * */ public void setVmsTextLineColour(ColourEnum value) { this.vmsTextLineColour = value; } /** * Gets the value of the vmsTextLineFlashing property. * * @return * possible object is * {@link Boolean } * */ public Boolean isVmsTextLineFlashing() { return vmsTextLineFlashing; } /** * Sets the value of the vmsTextLineFlashing property. * * @param value * allowed object is * {@link Boolean } * */ public void setVmsTextLineFlashing(Boolean value) { this.vmsTextLineFlashing = value; } /** * Gets the value of the vmsTextLineHtml property. * * @return * possible object is * {@link String } * */ public String getVmsTextLineHtml() { return vmsTextLineHtml; } /** * Sets the value of the vmsTextLineHtml property. * * @param value * allowed object is * {@link String } * */ public void setVmsTextLineHtml(String value) { this.vmsTextLineHtml = value; } /** * Gets the value of the vmsTextLineExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getVmsTextLineExtension() { return vmsTextLineExtension; } /** * Sets the value of the vmsTextLineExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setVmsTextLineExtension(ExtensionType value) { this.vmsTextLineExtension = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy