// // 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 12:55:12 PM CEST // package xmm; 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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** *
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> * <element ref="{xmm}general"/> * </sequence> * <attribute ref="{xmm}id"/> * </restriction> * </complexContent> * </complexType> ** * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "general" }) @XmlRootElement(name = "generalization") public class Generalization { @XmlElement(required = true) protected General general; @XmlAttribute(name = "id", namespace = "http://schema.omg.org/spec/XMI/2.1") protected String id; /** * Gets the value of the general property. * * @return * possible object is * {@link General } * */ public General getGeneral() { return general; } /** * Sets the value of the general property. * * @param value * allowed object is * {@link General } * */ public void setGeneral(General value) { this.general = 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; } }