// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.08.29 at 01:16:10 PM CEST // package uml; 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.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import xmm.ElementImport; import xmm.PackagedElement; import xmm.ProfileApplication; /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice maxOccurs="unbounded">
 *           <element name="packagedElement" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
 *           <element name="elementImport" type="{http://www.w3.org/2001/XMLSchema}anyType"/>
 *         </choice>
 *         <element name="packageImport" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *         <element name="profileApplication" type="{http://www.w3.org/2001/XMLSchema}anyType" maxOccurs="unbounded"/>
 *       </sequence>
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" />
 *       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "packagedElement", "elementImport", "packageImport", "profileApplication" }) @XmlRootElement(name = "Model") public class Model { @XmlElement(name = "packagedElement", namespace="") protected List packagedElement; @XmlElement(name = "elementImport", namespace="") protected List elementImport; protected Object packageImport; @XmlElement(required = true) protected List profileApplication; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "id", required = true) protected String id; public List getPackagedElement() { if (packagedElement == null){ packagedElement = new ArrayList(); } return packagedElement; } public void setPackagedElement(List packagedElement) { this.packagedElement = packagedElement; } public List getElementImport() { if (elementImport == null){ elementImport = new ArrayList(); } return elementImport; } public void setElementImport(List elementImport) { this.elementImport = elementImport; } /** * Gets the value of the packageImport property. * * @return * possible object is * {@link Object } * */ public Object getPackageImport() { return packageImport; } /** * Sets the value of the packageImport property. * * @param value * allowed object is * {@link Object } * */ public void setPackageImport(Object value) { this.packageImport = value; } /** * 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 id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }