xuml.tools.miuml.metamodel.jaxb.ModeledDomain 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.util.ArrayList;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ModeledDomain complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ModeledDomain">
* <complexContent>
* <extension base="{http://www.miuml.org/metamodel}Domain">
* <sequence>
* <element ref="{http://www.miuml.org/metamodel}ConstrainedType" maxOccurs="unbounded" minOccurs="0"/>
* <element name="Subsystem" type="{http://www.miuml.org/metamodel}Subsystem" maxOccurs="unbounded"/>
* <element name="ConstrainedLoop" type="{http://www.miuml.org/metamodel}ConstrainedLoop" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ModeledDomain", propOrder = {
"constrainedType",
"subsystem",
"constrainedLoop"
})
public class ModeledDomain
extends Domain
{
@XmlElementRef(name = "ConstrainedType", namespace = "http://www.miuml.org/metamodel", type = JAXBElement.class)
protected List> constrainedType;
@XmlElement(name = "Subsystem", required = true)
protected List subsystem;
@XmlElement(name = "ConstrainedLoop")
protected List constrainedLoop;
/**
* R708 DomainType Gets the value of the constrainedType 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 constrainedType property.
*
*
* For example, to add a new item, do as follows:
*
* getConstrainedType().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link RealType }{@code >}
* {@link JAXBElement }{@code <}{@link EnumeratedType }{@code >}
* {@link JAXBElement }{@code <}{@link IntegerType }{@code >}
* {@link JAXBElement }{@code <}{@link SymbolicType }{@code >}
* {@link JAXBElement }{@code <}{@link RationalType }{@code >}
* {@link JAXBElement }{@code <}{@link AtomicType }{@code >}
* {@link JAXBElement }{@code <}{@link BooleanType }{@code >}
* {@link JAXBElement }{@code <}{@link StructuredType }{@code >}
* {@link JAXBElement }{@code <}{@link ConstrainedType }{@code >}
*
*
*/
public List> getConstrainedType() {
if (constrainedType == null) {
constrainedType = new ArrayList>();
}
return this.constrainedType;
}
/**
* Gets the value of the subsystem 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 subsystem property.
*
*
* For example, to add a new item, do as follows:
*
* getSubsystem().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Subsystem }
*
*
*/
public List getSubsystem() {
if (subsystem == null) {
subsystem = new ArrayList();
}
return this.subsystem;
}
/**
* Gets the value of the constrainedLoop 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 constrainedLoop property.
*
*
* For example, to add a new item, do as follows:
*
* getConstrainedLoop().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ConstrainedLoop }
*
*
*/
public List getConstrainedLoop() {
if (constrainedLoop == null) {
constrainedLoop = new ArrayList();
}
return this.constrainedLoop;
}
}