org.plasma.metamodel.NamedElement 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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for NamedElement complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="NamedElement">
* <complexContent>
* <extension base="{http://plasma.org/metamodel}Element">
* <sequence>
* <element ref="{http://plasma.org/metamodel}Alias" minOccurs="0"/>
* <element ref="{http://plasma.org/metamodel}Derivation" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NamedElement", propOrder = {
"alias",
"derivation"
})
@XmlSeeAlso({
EnumerationLiteralAppInfo.class,
EnumerationAppInfo.class,
PropertyAppInfo.class,
TypeRef.class,
ClassAppInfo.class,
PackageAppInfo.class,
PackageRef.class,
ModelAppInfo.class,
EnumerationLiteral.class,
Property.class,
Type.class,
Package.class
})
public abstract class NamedElement
extends Element
{
@XmlElement(name = "Alias")
protected Alias alias;
@XmlElement(name = "Derivation")
protected Derivation derivation;
@XmlAttribute(name = "name", required = true)
protected String name;
/**
* Gets the value of the alias property.
*
* @return
* possible object is
* {@link Alias }
*
*/
public Alias getAlias() {
return alias;
}
/**
* Sets the value of the alias property.
*
* @param value
* allowed object is
* {@link Alias }
*
*/
public void setAlias(Alias value) {
this.alias = value;
}
/**
* Gets the value of the derivation property.
*
* @return
* possible object is
* {@link Derivation }
*
*/
public Derivation getDerivation() {
return derivation;
}
/**
* Sets the value of the derivation property.
*
* @param value
* allowed object is
* {@link Derivation }
*
*/
public void setDerivation(Derivation value) {
this.derivation = 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;
}
}