net.sf.colle.sql.test
Interface TestTable.Row

Enclosing interface:
TestTable

public static interface TestTable.Row


Method Summary
 int getId()
          Simple field get accessor for column nId.
 int getNullable()
          Simple field get accessor for column nNullable.
 boolean getPersisted()
          Returns true if the record has been persisted in the database.
 String getString()
          Simple field get accessor for column sString.
 boolean isNullableNull()
          Simple get for null values in column nNullable.
 void setNullable(int pnNullable)
          Simple field set accessor for column nNullable.
 void setNullableNull(boolean pbNull)
          Simple set for null values in column nNullable.
 void setPersisted(boolean pbPersisted)
          Sets the persisted flag, true means the record is already in the database.
 void setString(String psString)
          Simple field set accessor for column sString.
 

Method Detail

getId

public int getId()
Simple field get accessor for column nId.


getNullable

public int getNullable()
Simple field get accessor for column nNullable.


isNullableNull

public boolean isNullableNull()
Simple get for null values in column nNullable.


setNullableNull

public void setNullableNull(boolean pbNull)
Simple set for null values in column nNullable.


setNullable

public void setNullable(int pnNullable)
Simple field set accessor for column nNullable.


getString

public String getString()
Simple field get accessor for column sString.


setString

public void setString(String psString)
Simple field set accessor for column sString.


getPersisted

public boolean getPersisted()
Returns true if the record has been persisted in the database.


setPersisted

public void setPersisted(boolean pbPersisted)
Sets the persisted flag, true means the record is already in the database.