org.plasma.metamodel.Derivation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plasma-metamodel Show documentation
Show all versions of plasma-metamodel Show documentation
The Plasma Metamodel Module
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.10.06 at 02:19:48 PM MST
//
package org.plasma.metamodel;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* This UML stereotype is applied to a consumer UML named-element that is computed from the supplier element.
*
* Java class for Derivation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Derivation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="classSupplier" type="{http://plasma.org/metamodel}ClassRef"/>
* <element name="enumerationSupplier" type="{http://plasma.org/metamodel}EnumerationRef"/>
* <element name="propertySupplier" type="{http://plasma.org/metamodel}PropertyRef"/>
* <element name="packageSupplier" type="{http://plasma.org/metamodel}PackageRef"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Derivation", propOrder = {
"packageSupplier",
"propertySupplier",
"enumerationSupplier",
"classSupplier"
})
@XmlRootElement(name = "Derivation")
public class Derivation {
protected PackageRef packageSupplier;
protected PropertyRef propertySupplier;
protected EnumerationRef enumerationSupplier;
protected ClassRef classSupplier;
/**
* Gets the value of the packageSupplier property.
*
* @return
* possible object is
* {@link PackageRef }
*
*/
public PackageRef getPackageSupplier() {
return packageSupplier;
}
/**
* Sets the value of the packageSupplier property.
*
* @param value
* allowed object is
* {@link PackageRef }
*
*/
public void setPackageSupplier(PackageRef value) {
this.packageSupplier = value;
}
/**
* Gets the value of the propertySupplier property.
*
* @return
* possible object is
* {@link PropertyRef }
*
*/
public PropertyRef getPropertySupplier() {
return propertySupplier;
}
/**
* Sets the value of the propertySupplier property.
*
* @param value
* allowed object is
* {@link PropertyRef }
*
*/
public void setPropertySupplier(PropertyRef value) {
this.propertySupplier = value;
}
/**
* Gets the value of the enumerationSupplier property.
*
* @return
* possible object is
* {@link EnumerationRef }
*
*/
public EnumerationRef getEnumerationSupplier() {
return enumerationSupplier;
}
/**
* Sets the value of the enumerationSupplier property.
*
* @param value
* allowed object is
* {@link EnumerationRef }
*
*/
public void setEnumerationSupplier(EnumerationRef value) {
this.enumerationSupplier = value;
}
/**
* Gets the value of the classSupplier property.
*
* @return
* possible object is
* {@link ClassRef }
*
*/
public ClassRef getClassSupplier() {
return classSupplier;
}
/**
* Sets the value of the classSupplier property.
*
* @param value
* allowed object is
* {@link ClassRef }
*
*/
public void setClassSupplier(ClassRef value) {
this.classSupplier = value;
}
}