View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2007.08.03 at 04:04:34 PM MSD 
6   //
7   
8   
9   package org.riverock.dbrevision.annotation.schema.db;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlType;
15  
16  
17  /**
18   * <p>Java class for PrimaryKey complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="PrimaryKey">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;attribute name="type">
27   *         &lt;simpleType>
28   *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
29   *             &lt;enumeration value="number"/>
30   *             &lt;enumeration value="string"/>
31   *             &lt;enumeration value="date"/>
32   *           &lt;/restriction>
33   *         &lt;/simpleType>
34   *       &lt;/attribute>
35   *     &lt;/restriction>
36   *   &lt;/complexContent>
37   * &lt;/complexType>
38   * </pre>
39   * 
40   * 
41   */
42  @XmlAccessorType(XmlAccessType.FIELD)
43  @XmlType(name = "PrimaryKey", namespace = "")
44  public class PrimaryKey {
45  
46      @XmlAttribute
47      protected String type;
48  
49      /**
50       * Gets the value of the type property.
51       * 
52       * @return
53       *     possible object is
54       *     {@link String }
55       *     
56       */
57      public String getType() {
58          return type;
59      }
60  
61      /**
62       * Sets the value of the type property.
63       * 
64       * @param value
65       *     allowed object is
66       *     {@link String }
67       *     
68       */
69      public void setType(String value) {
70          this.type = value;
71      }
72  
73  }