org.plasma.metamodel.XmlProperty 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.06.19 at 08:11:07 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.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 XmlProperty complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="XmlProperty">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="nodeType" use="required" type="{http://plasma.org/metamodel}XmlNodeType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "XmlProperty")
@XmlRootElement(name = "XmlProperty")
public class XmlProperty {
@XmlAttribute(name = "nodeType", required = true)
protected XmlNodeType nodeType;
/**
* Gets the value of the nodeType property.
*
* @return
* possible object is
* {@link XmlNodeType }
*
*/
public XmlNodeType getNodeType() {
return nodeType;
}
/**
* Sets the value of the nodeType property.
*
* @param value
* allowed object is
* {@link XmlNodeType }
*
*/
public void setNodeType(XmlNodeType value) {
this.nodeType = value;
}
}