View Javadoc
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 java.math.BigInteger;
12  import jakarta.xml.bind.annotation.XmlAccessType;
13  import jakarta.xml.bind.annotation.XmlAccessorType;
14  import jakarta.xml.bind.annotation.XmlAttribute;
15  import jakarta.xml.bind.annotation.XmlType;
16  
17  
18  /**
19   * <p>Java class for IdentifierAttribute complex type.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;complexType name="IdentifierAttribute"&gt;
25   *   &lt;complexContent&gt;
26   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
27   *       &lt;attribute name="Number" use="required" type="{http://www.miuml.org/metamodel}Number" /&gt;
28   *     &lt;/restriction&gt;
29   *   &lt;/complexContent&gt;
30   * &lt;/complexType&gt;
31   * </pre>
32   * 
33   * 
34   */
35  @XmlAccessorType(XmlAccessType.FIELD)
36  @XmlType(name = "IdentifierAttribute")
37  public class IdentifierAttribute {
38  
39      @XmlAttribute(name = "Number", required = true)
40      protected BigInteger number;
41  
42      /**
43       * Gets the value of the number property.
44       * 
45       * @return
46       *     possible object is
47       *     {@link BigInteger }
48       *     
49       */
50      public BigInteger getNumber() {
51          return number;
52      }
53  
54      /**
55       * Sets the value of the number property.
56       * 
57       * @param value
58       *     allowed object is
59       *     {@link BigInteger }
60       *     
61       */
62      public void setNumber(BigInteger value) {
63          this.number = value;
64      }
65  
66  }