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.XmlElement;
15 import javax.xml.bind.annotation.XmlRootElement;
16 import javax.xml.bind.annotation.XmlType;
17
18
19 /**
20 * <p>Java class for anonymous complex type.
21 *
22 * <p>The following schema fragment specifies the expected content contained within this class.
23 *
24 * <pre>
25 * <complexType>
26 * <complexContent>
27 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28 * <sequence>
29 * <element name="Field" type="{http://dbrevision.sourceforge.net/xsd/dbrevision-structure.xsd}DbField"/>
30 * </sequence>
31 * <attribute name="tableName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
32 * </restriction>
33 * </complexContent>
34 * </complexType>
35 * </pre>
36 *
37 *
38 */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "", propOrder = {
41 "field"
42 })
43 @XmlRootElement(name = "AddTableFieldAction", namespace = "")
44 public class AddTableFieldAction {
45
46 @XmlElement(name = "Field", required = true)
47 protected DbField field;
48 @XmlAttribute(required = true)
49 protected String tableName;
50
51 /**
52 * Gets the value of the field property.
53 *
54 * @return
55 * possible object is
56 * {@link DbField }
57 *
58 */
59 public DbField getField() {
60 return field;
61 }
62
63 /**
64 * Sets the value of the field property.
65 *
66 * @param value
67 * allowed object is
68 * {@link DbField }
69 *
70 */
71 public void setField(DbField value) {
72 this.field = value;
73 }
74
75 /**
76 * Gets the value of the tableName property.
77 *
78 * @return
79 * possible object is
80 * {@link String }
81 *
82 */
83 public String getTableName() {
84 return tableName;
85 }
86
87 /**
88 * Sets the value of the tableName property.
89 *
90 * @param value
91 * allowed object is
92 * {@link String }
93 *
94 */
95 public void setTableName(String value) {
96 this.tableName = value;
97 }
98
99 }