Uses of Interface
com.ibatis.sqlmap.engine.mapping.statement.MappedStatement

Packages that use MappedStatement
com.ibatis.sqlmap.engine.builder.xml   
com.ibatis.sqlmap.engine.cache   
com.ibatis.sqlmap.engine.impl   
com.ibatis.sqlmap.engine.mapping.statement   
com.ibatis.sqlmap.engine.scope   
 

Uses of MappedStatement in com.ibatis.sqlmap.engine.builder.xml
 

Methods in com.ibatis.sqlmap.engine.builder.xml that return MappedStatement
private  MappedStatement XmlSqlMapClientBuilder.parseGeneralStatement(org.w3c.dom.Node n, GeneralStatement statement)
           
 

Uses of MappedStatement in com.ibatis.sqlmap.engine.cache
 

Methods in com.ibatis.sqlmap.engine.cache with parameters of type MappedStatement
 void CacheModel.onExecuteStatement(MappedStatement statement)
          ExecuteListener event.
 

Uses of MappedStatement in com.ibatis.sqlmap.engine.impl
 

Methods in com.ibatis.sqlmap.engine.impl that return MappedStatement
 MappedStatement ExtendedSqlMapClient.getMappedStatement(java.lang.String id)
           
 MappedStatement SqlMapClientImpl.getMappedStatement(java.lang.String id)
           
 MappedStatement SqlMapExecutorDelegate.getMappedStatement(java.lang.String id)
           
 MappedStatement SqlMapSessionImpl.getMappedStatement(java.lang.String id)
           
 

Methods in com.ibatis.sqlmap.engine.impl with parameters of type MappedStatement
 void SqlMapExecutorDelegate.addMappedStatement(MappedStatement ms)
           
private  java.lang.Object SqlMapExecutorDelegate.executeSelectKey(SessionScope session, Transaction trans, MappedStatement ms, java.lang.Object param)
           
protected  RequestScope SqlMapExecutorDelegate.popRequest(SessionScope session, MappedStatement mappedStatement)
           
 

Uses of MappedStatement in com.ibatis.sqlmap.engine.mapping.statement
 

Classes in com.ibatis.sqlmap.engine.mapping.statement that implement MappedStatement
 class BaseStatement
           
 class CachingStatement
           
 class DeleteStatement
           
 class GeneralStatement
           
 class InsertStatement
           
 class ProcedureStatement
           
 class SelectKeyStatement
           
 class SelectStatement
           
 class UpdateStatement
           
 

Fields in com.ibatis.sqlmap.engine.mapping.statement declared as MappedStatement
private  MappedStatement CachingStatement.statement
           
 

Methods in com.ibatis.sqlmap.engine.mapping.statement with parameters of type MappedStatement
 void ExecuteListener.onExecuteStatement(MappedStatement statement)
           
 

Constructors in com.ibatis.sqlmap.engine.mapping.statement with parameters of type MappedStatement
CachingStatement(MappedStatement statement, CacheModel cacheModel)
           
 

Uses of MappedStatement in com.ibatis.sqlmap.engine.scope
 

Fields in com.ibatis.sqlmap.engine.scope declared as MappedStatement
private  MappedStatement RequestScope.statement
           
 

Methods in com.ibatis.sqlmap.engine.scope that return MappedStatement
 MappedStatement RequestScope.getStatement()
           
 

Methods in com.ibatis.sqlmap.engine.scope with parameters of type MappedStatement
 void RequestScope.setStatement(MappedStatement statement)