org.plasma.metamodel.Alias 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.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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* This stereotype provides modelling-context specific alternative names for UML named elements within a model. While a UML logical model often differs greatly from a physical model for example, the intent is to provide enough naming and other context specific information to make the physical model entirely reflective or derivitive of the UML logical model. In other words support the generation of multiple context-specific models from a single UML logical model. Modelling context specific names or aliases are particularly important as they often differ greatly between modelling contexts due to various standard naming conventions or technology limitations such as name length.
*
* Java class for Alias complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Alias">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="physicalName" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="localName" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="businessName" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Alias")
@XmlRootElement(name = "Alias")
public class Alias {
@XmlAttribute(name = "physicalName")
protected String physicalName;
@XmlAttribute(name = "localName")
protected String localName;
@XmlAttribute(name = "businessName")
protected String businessName;
/**
* Gets the value of the physicalName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPhysicalName() {
return physicalName;
}
/**
* Sets the value of the physicalName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPhysicalName(String value) {
this.physicalName = value;
}
/**
* Gets the value of the localName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocalName() {
return localName;
}
/**
* Sets the value of the localName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocalName(String value) {
this.localName = value;
}
/**
* Gets the value of the businessName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBusinessName() {
return businessName;
}
/**
* Sets the value of the businessName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBusinessName(String value) {
this.businessName = value;
}
}