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.06 at 08:17:38 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 DbAbstractTable complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="DbAbstractTable">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
27   *       &lt;attribute name="remark" type="{http://www.w3.org/2001/XMLSchema}string" />
28   *       &lt;attribute name="schema" type="{http://www.w3.org/2001/XMLSchema}string" />
29   *       &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
30   *     &lt;/restriction>
31   *   &lt;/complexContent>
32   * &lt;/complexType>
33   * </pre>
34   * 
35   * 
36   */
37  @XmlAccessorType(XmlAccessType.FIELD)
38  @XmlType(name = "DbAbstractTable")
39  public abstract class DbAbstractTable {
40  
41      @XmlAttribute(required = true)
42      protected String name;
43      @XmlAttribute
44      protected String remark;
45      @XmlAttribute
46      protected String schema;
47      @XmlAttribute
48      protected String type;
49  
50      /**
51       * Gets the value of the name property.
52       * 
53       * @return
54       *     possible object is
55       *     {@link String }
56       *     
57       */
58      public String getName() {
59          return name;
60      }
61  
62      /**
63       * Sets the value of the name property.
64       * 
65       * @param value
66       *     allowed object is
67       *     {@link String }
68       *     
69       */
70      public void setName(String value) {
71          this.name = value;
72      }
73  
74      /**
75       * Gets the value of the remark property.
76       * 
77       * @return
78       *     possible object is
79       *     {@link String }
80       *     
81       */
82      public String getRemark() {
83          return remark;
84      }
85  
86      /**
87       * Sets the value of the remark property.
88       * 
89       * @param value
90       *     allowed object is
91       *     {@link String }
92       *     
93       */
94      public void setRemark(String value) {
95          this.remark = value;
96      }
97  
98      /**
99       * Gets the value of the schema property.
100      * 
101      * @return
102      *     possible object is
103      *     {@link String }
104      *     
105      */
106     public String getSchema() {
107         return schema;
108     }
109 
110     /**
111      * Sets the value of the schema property.
112      * 
113      * @param value
114      *     allowed object is
115      *     {@link String }
116      *     
117      */
118     public void setSchema(String value) {
119         this.schema = value;
120     }
121 
122     /**
123      * Gets the value of the type property.
124      * 
125      * @return
126      *     possible object is
127      *     {@link String }
128      *     
129      */
130     public String getType() {
131         return type;
132     }
133 
134     /**
135      * Sets the value of the type property.
136      * 
137      * @param value
138      *     allowed object is
139      *     {@link String }
140      *     
141      */
142     public void setType(String value) {
143         this.type = value;
144     }
145 
146 }