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 * <p>Java class for CreationEvent complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="CreationEvent">
24 * <complexContent>
25 * <extension base="{http://www.miuml.org/metamodel}Event">
26 * <attribute name="State" use="required" type="{http://www.miuml.org/metamodel}Name" />
27 * </extension>
28 * </complexContent>
29 * </complexType>
30 * </pre>
31 *
32 *
33 */
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "CreationEvent")
36 public class CreationEvent
37 extends Event
38 {
39
40 @XmlAttribute(name = "State", required = true)
41 protected String state;
42
43 /**
44 * Gets the value of the state property.
45 *
46 * @return
47 * possible object is
48 * {@link String }
49 *
50 */
51 public String getState() {
52 return state;
53 }
54
55 /**
56 * Sets the value of the state property.
57 *
58 * @param value
59 * allowed object is
60 * {@link String }
61 *
62 */
63 public void setState(String value) {
64 this.state = value;
65 }
66
67 }