xuml.tools.miuml.metamodel.jaxb.State Maven / Gradle / Ivy
Show all versions of miuml-jaxb Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.10.09 at 07:15:51 PM AEDT
//
package xuml.tools.miuml.metamodel.jaxb;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* R510
*
* Java class for State complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="State">
* <complexContent>
* <extension base="{http://www.miuml.org/metamodel}Destination">
* <sequence>
* <element name="StateSignature" type="{http://www.miuml.org/metamodel}StateSignature" minOccurs="0"/>
* <element name="Extension" type="{http://www.miuml.org/metamodel}Extension" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="Snum" type="{http://www.miuml.org/metamodel}PositiveInteger" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "State", propOrder = {
"stateSignature",
"extension"
})
public class State
extends Destination
{
@XmlElement(name = "StateSignature")
protected StateSignature stateSignature;
@XmlElement(name = "Extension")
protected List extension;
@XmlAttribute(name = "Snum")
protected BigInteger snum;
/**
* Gets the value of the stateSignature property.
*
* @return
* possible object is
* {@link StateSignature }
*
*/
public StateSignature getStateSignature() {
return stateSignature;
}
/**
* Sets the value of the stateSignature property.
*
* @param value
* allowed object is
* {@link StateSignature }
*
*/
public void setStateSignature(StateSignature value) {
this.stateSignature = value;
}
/**
* Gets the value of the extension property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the extension property.
*
*
* For example, to add a new item, do as follows:
*
* getExtension().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Extension }
*
*
*/
public List getExtension() {
if (extension == null) {
extension = new ArrayList();
}
return this.extension;
}
/**
* Gets the value of the snum property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getSnum() {
return snum;
}
/**
* Sets the value of the snum property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setSnum(BigInteger value) {
this.snum = value;
}
}