net.simplace.util.io.ColumnData
public class ColumnData {
// Public Constructors
public ColumnData(int aStartCol, int aEndCol, String aColName, String aValue,
String aDataType, boolean aIsHeadColumn, int aColumnIndex);
// Protected Constructors
protected ColumnData(Element aDataElement, int aColumnIndex, FWObservable
aObservable);
// Public Instance Methods public String getColName();
returns the colName
public String getDataType();
returns the dataType
public int getEndCol();
returns the endCol
public int getStartCol();
returns the startCol
public int getColumnIndex();
returns the columnIndex
public void
initColName(String aLine, int aI);
public boolean isHeadColumn();
returns the isHeadColumn
public boolean isCharType();
returns the isHeadColumn
public String
getValue(String aLine, int aRowIndex);
returns the value
public void
setValue(String aValue);
public boolean equals(Object aObj); // Overrides java.lang.Object
public int hashCode(); // Overrides java.lang.Object
// Protected Instance Methods protected void
setColumnIndex(int aColumnIndex);
- aColumnIndex the columnIndex to set
protected void
setColName(String aColName);
- aColName the colName to set
}