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 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.
 class ToplinkDaoTemplate
          A DaoTemplate for Toplink implementations that provides a convenient method to access the Toplink Session.
 

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

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

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