crcl.base.StopMotionType 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
*
* StopMotionType is derived from MiddleCommandType.
* An instance of StopMotionType has the following elements:
* Name (inherited, optional)
* CommandID (inherited)
* StopCondition.
*
* StopCondition is an enumerated value indicating how the stop
* should occur.
*
*
* Java class for StopMotionType complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StopMotionType">
* <complexContent>
* <extension base="{}MiddleCommandType">
* <sequence>
* <element name="StopCondition" type="{}StopConditionEnumType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StopMotionType", propOrder = {
"stopCondition"
})
public class StopMotionType
extends MiddleCommandType
{
@XmlElement(name = "StopCondition", required = true)
@XmlSchemaType(name = "token")
protected StopConditionEnumType stopCondition;
/**
* Gets the value of the stopCondition property.
*
* @return
* possible object is
* {@link StopConditionEnumType }
*
*/
public StopConditionEnumType getStopCondition() {
return stopCondition;
}
/**
* Sets the value of the stopCondition property.
*
* @param value
* allowed object is
* {@link StopConditionEnumType }
*
*/
public void setStopCondition(StopConditionEnumType value) {
this.stopCondition = value;
}
}