1 | public void setColumn1(TableColumnInfo c1) {↵ | | 1 | public void setColumn2(TableColumnInfo c2) {↵
|
2 | col1Type = c1.getDataType();↵ | | 2 | col2Type = c2.getDataType();↵
|
3 | col1Length = c1.getColumnSize();↵ | | 3 | col2Length = c2.getColumnSize();↵
|
4 | col1IsNullable = c1.isNullable().equalsIgnoreCase("NO") ? false : true;↵ | | 4 | col2IsNullable = c2.isNullable().equalsIgnoreCase("NO") ? false : true;↵
|
5 | tableName = c1.getTableName();↵ | | 5 | tableName = c2.getTableName();↵
|
6 | columnName = c1.getColumnName(); ↵ | | 6 | columnName = c2.getColumnName(); ↵
|
7 | col1remarks = c1.getRemarks();↵ | | 7 | col2remarks = c2.getRemarks();↵
|
8 | col1default = c1.getDefaultValue();↵ | | 8 | col2default = c2.getDefaultValue();↵
|
9 | | | 9 |
|