SimpleTextColumnpublic class SimpleTextColumn extends Object
Fields Summary |
---|
public String | name | public int | type | public int | precision | public boolean | searchable | public int | colNo | public int | displaySize | public String | typeName |
Constructors Summary |
---|
public SimpleTextColumn(String name, int type, int precision)
this.name = name;
this.type = type;
this.precision = precision;
| public SimpleTextColumn(String name, int type)
this.name = name;
this.type = type;
this.precision = 0;
| public SimpleTextColumn(String name)
this.name = name;
this.type = 0;
this.precision = 0;
|
|