xuml.tools.miuml.metamodel.jaxb.Structure 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.08.19 at 09:36:38 PM AEST
//
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.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
* R703
*
* Java class for Structure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Structure">
* <complexContent>
* <extension base="{http://www.miuml.org/metamodel}Member">
* <sequence>
* <element ref="{http://www.miuml.org/metamodel}Member" maxOccurs="unbounded"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Structure", propOrder = {
"member"
})
public class Structure
extends Member
{
@XmlElementRef(name = "Member", namespace = "http://www.miuml.org/metamodel", type = JAXBElement.class)
protected List> member;
/**
* R704 Gets the value of the member 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 member property.
*
*
* For example, to add a new item, do as follows:
*
* getMember().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link JAXBElement }{@code <}{@link Member }{@code >}
* {@link JAXBElement }{@code <}{@link Field }{@code >}
* {@link JAXBElement }{@code <}{@link Structure }{@code >}
*
*
*/
public List> getMember() {
if (member == null) {
member = new ArrayList>();
}
return this.member;
}
}