All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.plasma.metamodel.NamedElement Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
//
// 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.09.01 at 08:32:59 AM 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy