1 package jimm.datavision.source.ncsql; 2 import jimm.datavision.source.Table; 3 import jimm.datavision.source.Column; 4 5 12 public class NCColumn extends Column { 13 14 protected NCTable table; 15 16 23 public NCColumn(NCTable table, String colName, int colType) { 24 super(table.getName() + '.' + colName, colName, colType); 25 this.table = table; 26 } 27 28 33 public Table getTable() { return table; } 34 35 } 36 | Popular Tags |