Uses of Interface
com.tekann.codegen.pda.db.IDTO

Packages that use IDTO
com.tekann.codegen.pda   
com.tekann.codegen.pda.db   
 

Uses of IDTO in com.tekann.codegen.pda
 

Methods in com.tekann.codegen.pda that return IDTO
 IDTO IEditForm.getDTO()
          Gets the container DTO.
 IDTO ILogin.getLoginObject()
          Retorna objeto de login.
 

Methods in com.tekann.codegen.pda with parameters of type IDTO
 java.lang.Object ITableForm.displayFK(java.lang.String tableName, java.lang.String columnName, IDTO dto)
          Defines how a foreign key will be showed.
 void IEditForm.setDTO(IDTO dto)
          Sets the container DTO.
 void ILogin.setLoginObject(IDTO loginObject)
          Sets the login object.
 

Uses of IDTO in com.tekann.codegen.pda.db
 

Classes in com.tekann.codegen.pda.db that implement IDTO
 class DefaultDTO
          Class that represents a row in a table DAO.
 

Methods in com.tekann.codegen.pda.db that return IDTO
 IDTO IDAO.createDTO()
          Creates a DefaultDTO
 IDTO DTODataSource.getDTOAt(int row)
          Deprecated. Gets the DTO by the passed row.
 IDTO DTODataSource.removeDTOAt(java.lang.String tableName, int row)
          Deprecated. Removes the DTO.
 

Methods in com.tekann.codegen.pda.db with parameters of type IDTO
 int IDAO.save(IDTO dto)
          Saves a new DefaultDTO.
 int IDAO.save(IDTO dto, int attr)
          Saves a new DefaultDTO.
 int IDAO.update(IDTO dto)
          Updates a DefaultDTO.
 int IDAO.update(IDTO dto, int attr)
          Updates a DefaultDTO.