xuml.tools.miuml.metamodel.jaxb.StateModelParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of miuml-jaxb Show documentation
Show all versions of miuml-jaxb Show documentation
Contains miUML metamodel schema and xuml-tools extensions schema and generates JAXB classes from those schemas.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.10.09 at 07:15:51 PM AEDT
//
package xuml.tools.miuml.metamodel.jaxb;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Dave Moten simplified the definition of
* StateModelParameter because parameter typing is intimately related
* to Action Language which has not been defined for miUml yet (28 May
* 2012). Dave chose to do this also to enable model compilers that may
* not implement a miUml Action Language but rather map state model
* signatures to methods in a platform language like java in the case
* of xuml-tools.
*
*
* Java class for StateModelParameter complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StateModelParameter">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="Name" use="required" type="{http://www.miuml.org/metamodel}Name" />
* <attribute name="Type" use="required" type="{http://www.miuml.org/metamodel}Name" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StateModelParameter")
public class StateModelParameter {
@XmlAttribute(name = "Name", required = true)
protected String name;
@XmlAttribute(name = "Type", required = true)
protected String type;
/**
* 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;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy