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

crcl.base.MessageType Maven / Gradle / Ivy

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy