crcl.base.MessageType Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crcl4java-base Show documentation
Show all versions of crcl4java-base Show documentation
XJC autogenerated classes corresponding to the CRCL XSD schema files.
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.04.30 at 04:56:17 PM EDT
//
package crcl.base;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* MessageType is derived from MiddleCommandType.
* An instance of MessageType has the following elements:
* Name (inherited, optional)
* CommandID (inherited)
* Message.
*
* Message is a string that should be displayed by the robot
* controller.
*
*
* Java class for MessageType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MessageType">
* <complexContent>
* <extension base="{}MiddleCommandType">
* <sequence>
* <element name="Message" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MessageType", propOrder = {
"message"
})
public class MessageType
extends MiddleCommandType
{
@XmlElement(name = "Message", required = true)
protected String message;
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
}