Uses of Interface
com.ibatis.dao.client.Dao

Packages that use Dao
com.ibatis.dao.client   
com.ibatis.dao.client.template   
com.ibatis.dao.engine.impl   
 

Uses of Dao in com.ibatis.dao.client
 

Methods in com.ibatis.dao.client that return Dao
 Dao DaoManager.getDao(java.lang.Class type)
          Gets a Dao instance for the requested interface type.
 Dao DaoManager.getDao(java.lang.Class iface, java.lang.String contextId)
          Gets a Dao instance for the requested interface type registered under the context with the specified id.
 

Methods in com.ibatis.dao.client with parameters of type Dao
 DaoTransaction DaoManager.getTransaction(Dao dao)
          Gets the transaction that the provided Dao is currently working under.
 

Uses of Dao in com.ibatis.dao.client.template
 

Classes in com.ibatis.dao.client.template that implement Dao
 class DaoTemplate
          A base class for Dao implementations, or other DAO templates.
 class HibernateDaoTemplate
          A DaoTemplate for Hibernate implementations that provides a convenient method to access the Hibernate Session.
 class JdbcDaoTemplate
          A DaoTemplate for JDBC implementations that provides a convenient method to access the JDBC Connection.
 class JtaDaoTemplate
          Deprecated. Use JdbcDaoTemplate instead. Both have the same interface, so simply changing your code to extend JdbcDaoTemplate should work without any change in behaviour.
 class OjbBrokerDaoTemplate
          A DaoTemplate for OJB broker implementations that provides a convenient method to access the broker.
 class SqlMapDaoTemplate
          A DaoTemplate for SQL Map implementations that provides a convenient method to access the SqlMapExecutor.
 

Uses of Dao in com.ibatis.dao.engine.impl
 

Fields in com.ibatis.dao.engine.impl declared as Dao
private  Dao DaoImpl.daoInstance
           
private  Dao DaoImpl.proxy
           
 

Methods in com.ibatis.dao.engine.impl that return Dao
static Dao DaoProxy.newInstance(DaoImpl daoImpl)
           
 Dao StandardDaoManager.getDao(java.lang.Class iface)
           
 Dao StandardDaoManager.getDao(java.lang.Class iface, java.lang.String contextId)
           
 Dao DaoContext.getDao(java.lang.Class iface)
           
 Dao DaoImpl.getDaoInstance()
           
 Dao DaoImpl.getProxy()
           
 

Methods in com.ibatis.dao.engine.impl with parameters of type Dao
 DaoTransaction StandardDaoManager.getTransaction(Dao dao)
           
 void DaoImpl.setDaoInstance(Dao daoInstance)