1 // 2 // This file was generated by the Eclipse Implementation of JAXB, v3.0.2 3 // See https://eclipse-ee4j.github.io/jaxb-ri 4 // Any modifications to this file will be lost upon recompilation of the source schema. 5 // Generated on: 2022.02.28 at 10:57:04 AM AEDT 6 // 7 8 9 package xuml.tools.miuml.metamodel.jaxb; 10 11 import jakarta.xml.bind.annotation.XmlAccessType; 12 import jakarta.xml.bind.annotation.XmlAccessorType; 13 import jakarta.xml.bind.annotation.XmlAttribute; 14 import jakarta.xml.bind.annotation.XmlType; 15 16 17 /** 18 * Dave Moten simplified the definition of 19 * StateModelParameter because parameter typing is intimately related 20 * to Action Language which has not been defined for miUml yet (28 May 21 * 2012). Dave chose to do this also to enable model compilers that may 22 * not implement a miUml Action Language but rather map state model 23 * signatures to methods in a platform language like java in the case 24 * of xuml-tools. 25 * 26 * 27 * <p>Java class for StateModelParameter complex type. 28 * 29 * <p>The following schema fragment specifies the expected content contained within this class. 30 * 31 * <pre> 32 * <complexType name="StateModelParameter"> 33 * <complexContent> 34 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 35 * <attribute name="Name" use="required" type="{http://www.miuml.org/metamodel}Name" /> 36 * <attribute name="Type" use="required" type="{http://www.miuml.org/metamodel}Name" /> 37 * </restriction> 38 * </complexContent> 39 * </complexType> 40 * </pre> 41 * 42 * 43 */ 44 @XmlAccessorType(XmlAccessType.FIELD) 45 @XmlType(name = "StateModelParameter") 46 public class StateModelParameter { 47 48 @XmlAttribute(name = "Name", required = true) 49 protected String name; 50 @XmlAttribute(name = "Type", required = true) 51 protected String type; 52 53 /** 54 * Gets the value of the name property. 55 * 56 * @return 57 * possible object is 58 * {@link String } 59 * 60 */ 61 public String getName() { 62 return name; 63 } 64 65 /** 66 * Sets the value of the name property. 67 * 68 * @param value 69 * allowed object is 70 * {@link String } 71 * 72 */ 73 public void setName(String value) { 74 this.name = value; 75 } 76 77 /** 78 * Gets the value of the type property. 79 * 80 * @return 81 * possible object is 82 * {@link String } 83 * 84 */ 85 public String getType() { 86 return type; 87 } 88 89 /** 90 * Sets the value of the type property. 91 * 92 * @param value 93 * allowed object is 94 * {@link String } 95 * 96 */ 97 public void setType(String value) { 98 this.type = value; 99 } 100 101 }