xuml.tools.miuml.metamodel.jaxb.Subsystem 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.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Subsystem complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Subsystem">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.miuml.org/metamodel}SubsystemElement" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="Name" use="required" type="{http://www.miuml.org/metamodel}Name" />
* <attribute name="Alias" type="{http://www.miuml.org/metamodel}Name" />
* <attribute name="Floor" use="required" type="{http://www.miuml.org/metamodel}PositiveInteger" />
* <attribute name="Ceiling" use="required" type="{http://www.miuml.org/metamodel}PositiveInteger" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Subsystem", propOrder = {
"subsystemElement"
})
public class Subsystem {
@XmlElementRef(name = "SubsystemElement", namespace = "http://www.miuml.org/metamodel", type = JAXBElement.class)
protected List> subsystemElement;
@XmlAttribute(name = "Name", required = true)
protected String name;
@XmlAttribute(name = "Alias")
protected String alias;
@XmlAttribute(name = "Floor", required = true)
protected BigInteger floor;
@XmlAttribute(name = "Ceiling", required = true)
protected BigInteger ceiling;
/**
* R13 Gets the value of the subsystemElement 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 subsystemElement property.
*
*
* For example, to add a new item, do as follows:
*
* getSubsystemElement().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link UnaryAssociation }{@code >}
* {@link JAXBElement }{@code <}{@link Class }{@code >}
* {@link JAXBElement }{@code <}{@link Association }{@code >}
* {@link JAXBElement }{@code <}{@link Relationship }{@code >}
* {@link JAXBElement }{@code <}{@link SubsystemElement }{@code >}
* {@link JAXBElement }{@code <}{@link Generalization }{@code >}
* {@link JAXBElement }{@code <}{@link BinaryAssociation }{@code >}
*
*
*/
public List> getSubsystemElement() {
if (subsystemElement == null) {
subsystemElement = new ArrayList>();
}
return this.subsystemElement;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the alias property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlias() {
return alias;
}
/**
* Sets the value of the alias property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlias(String value) {
this.alias = value;
}
/**
* Gets the value of the floor property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getFloor() {
return floor;
}
/**
* Sets the value of the floor property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setFloor(BigInteger value) {
this.floor = value;
}
/**
* Gets the value of the ceiling property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getCeiling() {
return ceiling;
}
/**
* Sets the value of the ceiling property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setCeiling(BigInteger value) {
this.ceiling = value;
}
}