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 DbIndexColumn complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="DbIndexColumn">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <attribute name="ascending" type="{http://www.w3.org/2001/XMLSchema}boolean" />
27 * <attribute name="columnName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
28 * <attribute name="keySeq" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
29 * </restriction>
30 * </complexContent>
31 * </complexType>
32 * </pre>
33 *
34 *
35 */
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "DbIndexColumn")
38 public class DbIndexColumn {
39
40 @XmlAttribute
41 protected Boolean ascending;
42 @XmlAttribute(required = true)
43 protected String columnName;
44 @XmlAttribute(required = true)
45 protected int keySeq;
46
47 /**
48 * Gets the value of the ascending property.
49 *
50 * @return
51 * possible object is
52 * {@link Boolean }
53 *
54 */
55 public Boolean isAscending() {
56 return ascending;
57 }
58
59 /**
60 * Sets the value of the ascending property.
61 *
62 * @param value
63 * allowed object is
64 * {@link Boolean }
65 *
66 */
67 public void setAscending(Boolean value) {
68 this.ascending = value;
69 }
70
71 /**
72 * Gets the value of the columnName property.
73 *
74 * @return
75 * possible object is
76 * {@link String }
77 *
78 */
79 public String getColumnName() {
80 return columnName;
81 }
82
83 /**
84 * Sets the value of the columnName property.
85 *
86 * @param value
87 * allowed object is
88 * {@link String }
89 *
90 */
91 public void setColumnName(String value) {
92 this.columnName = value;
93 }
94
95 /**
96 * Gets the value of the keySeq property.
97 *
98 */
99 public int getKeySeq() {
100 return keySeq;
101 }
102
103 /**
104 * Sets the value of the keySeq property.
105 *
106 */
107 public void setKeySeq(int value) {
108 this.keySeq = value;
109 }
110
111 }