01: package net.sourceforge.squirrel_sql.plugins.graph.xmlbeans;
02:
03: public class ColumnInfoXmlBean {
04: private String columnName;
05: private String columnType;
06: private int columnSize;
07: private boolean nullable;
08: private int index;
09: private String importedFromTable;
10: private String importedColumn;
11: private String toString;
12: private String constraintName;
13: private boolean isPrimaryKey;
14: private int decimalDigits;
15:
16: public String getColumnName() {
17: return columnName;
18: }
19:
20: public void setColumnName(String columnName) {
21: this .columnName = columnName;
22: }
23:
24: public String getColumnType() {
25: return columnType;
26: }
27:
28: public void setColumnType(String columnType) {
29: this .columnType = columnType;
30: }
31:
32: public int getColumnSize() {
33: return columnSize;
34: }
35:
36: public void setColumnSize(int columnSize) {
37: this .columnSize = columnSize;
38: }
39:
40: public boolean isNullable() {
41: return nullable;
42: }
43:
44: public void setNullable(boolean nullable) {
45: this .nullable = nullable;
46: }
47:
48: public int getIndex() {
49: return index;
50: }
51:
52: public void setIndex(int index) {
53: this .index = index;
54: }
55:
56: public String getImportedFromTable() {
57: return importedFromTable;
58: }
59:
60: public void setImportedFromTable(String importedFromTable) {
61: this .importedFromTable = importedFromTable;
62: }
63:
64: public String getImportedColumn() {
65: return importedColumn;
66: }
67:
68: public void setImportedColumn(String importedColumn) {
69: this .importedColumn = importedColumn;
70: }
71:
72: public String getConstraintName() {
73: return constraintName;
74: }
75:
76: public void setConstraintName(String constraintName) {
77: this .constraintName = constraintName;
78: }
79:
80: public boolean isPrimaryKey() {
81: return isPrimaryKey;
82: }
83:
84: public void setPrimaryKey(boolean primaryKey) {
85: isPrimaryKey = primaryKey;
86: }
87:
88: public int getDecimalDigits() {
89: return decimalDigits;
90: }
91:
92: public void setDecimalDigits(int decimalDigits) {
93: this.decimalDigits = decimalDigits;
94: }
95: }
|