net.sourceforge.jdbcimporter
Class ImportColumnDef

java.lang.Object
  extended bynet.sourceforge.jdbcimporter.ColumnDef
      extended bynet.sourceforge.jdbcimporter.ImportColumnDef

public class ImportColumnDef
extends ColumnDef

The ImportColumnDef class defines a column in an entity that will used in the importing of data.

Version:
0.6
Author:
Chris Nagy

Field Summary
 
Fields inherited from class net.sourceforge.jdbcimporter.ColumnDef
DATE_FORMAT, DECIMAL_FORMAT, FULL_NUMBER_FORMAT, TIME_FORMAT, TIMESTAMP_FORMAT, UNKNOWN_SQL_TYPE
 
Constructor Summary
ImportColumnDef()
           
 
Method Summary
 ColumnTranslator getTranslator()
          Returns the column translator used on every row's column value during the import.
 void setTranslator(ColumnTranslator newTranslator)
          Sets the column translator used on every row's column value during the import.
 java.lang.String toString()
          Overrides Object.toString()
 
Methods inherited from class net.sourceforge.jdbcimporter.ColumnDef
addProperty, convertStringToSQLType, createFormat, getDefaultValue, getFormat, getFormatPattern, getName, getProperty, getType, setDefaultValue, setFormatPattern, setName, setSQLType, setType
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ImportColumnDef

public ImportColumnDef()
Method Detail

setTranslator

public void setTranslator(ColumnTranslator newTranslator)
Sets the column translator used on every row's column value during the import.

Parameters:
newTranslator - column translator

getTranslator

public ColumnTranslator getTranslator()
Returns the column translator used on every row's column value during the import.

Returns:
column translator

toString

public java.lang.String toString()
Overrides Object.toString()

Overrides:
toString in class ColumnDef