01: package net.sourceforge.squirrel_sql.fw.dialects;
02:
03: import java.util.List;
04:
05: public class TableIndexInfo extends Object {
06: String table;
07: String ixName;
08: List<IndexColInfo> cols;
09: boolean unique;
10:
11: public TableIndexInfo(String table, String ixName,
12: List<IndexColInfo> cols, boolean unique) {
13: this.table = table;
14: this.ixName = ixName;
15: this.cols = cols;
16: this.unique = unique;
17: }
18: }
|