01: package net.sourceforge.squirrel_sql.plugins.graph.xmlbeans;
02:
03: public class TableFrameControllerXmlBean {
04: private String schema;
05: private String catalog;
06: private String tablename;
07: private TableFrameXmlBean tableFrameXmlBean;
08: private ColumnInfoXmlBean[] columnIfoXmlBeans;
09: private String[] tablesExportedTo;
10: private ConstraintViewXmlBean[] constraintViewXmlBeans;
11: private int columOrder;
12:
13: public String getSchema() {
14: return schema;
15: }
16:
17: public void setSchema(String schema) {
18: this .schema = schema;
19: }
20:
21: public String getCatalog() {
22: return catalog;
23: }
24:
25: public void setCatalog(String catalog) {
26: this .catalog = catalog;
27: }
28:
29: public String getTablename() {
30: return tablename;
31: }
32:
33: public void setTablename(String tablename) {
34: this .tablename = tablename;
35: }
36:
37: public TableFrameXmlBean getTableFrameXmlBean() {
38: return tableFrameXmlBean;
39: }
40:
41: public void setTableFrameXmlBean(TableFrameXmlBean tableFrameXmlBean) {
42: this .tableFrameXmlBean = tableFrameXmlBean;
43: }
44:
45: public ColumnInfoXmlBean[] getColumnIfoXmlBeans() {
46: return columnIfoXmlBeans;
47: }
48:
49: public void setColumnIfoXmlBeans(
50: ColumnInfoXmlBean[] columnIfoXmlBeans) {
51: this .columnIfoXmlBeans = columnIfoXmlBeans;
52: }
53:
54: public String[] getTablesExportedTo() {
55: return tablesExportedTo;
56: }
57:
58: public void setTablesExportedTo(String[] tablesExportedTo) {
59: this .tablesExportedTo = tablesExportedTo;
60: }
61:
62: public ConstraintViewXmlBean[] getConstraintViewXmlBeans() {
63: return constraintViewXmlBeans;
64: }
65:
66: public void setConstraintViewXmlBeans(
67: ConstraintViewXmlBean[] constraintViewXmlBeans) {
68: this .constraintViewXmlBeans = constraintViewXmlBeans;
69: }
70:
71: public int getColumOrder() {
72: return columOrder;
73: }
74:
75: public void setColumOrder(int columOrder) {
76: this.columOrder = columOrder;
77: }
78: }
|