Uses of Class
com.ibatis.sqlmap.engine.mapping.sql.dynamic.elements.IterateContext

Packages that use IterateContext
com.ibatis.sqlmap.engine.mapping.sql.dynamic   
com.ibatis.sqlmap.engine.mapping.sql.dynamic.elements   
 

Uses of IterateContext in com.ibatis.sqlmap.engine.mapping.sql.dynamic
 

Methods in com.ibatis.sqlmap.engine.mapping.sql.dynamic with parameters of type IterateContext
protected  void DynamicSql.iteratePropertyReplace(java.lang.StringBuffer bodyContent, IterateContext iterate)
           
 

Uses of IterateContext in com.ibatis.sqlmap.engine.mapping.sql.dynamic.elements
 

Methods in com.ibatis.sqlmap.engine.mapping.sql.dynamic.elements that return IterateContext
 IterateContext SqlTagContext.popIterateContext()
          iterate context is removed here from the stack when iterate tag is finished being processed
 IterateContext SqlTagContext.peekIterateContext()
          iterate context is removed here from the stack when iterate tag is finished being processed
 IterateContext IterateContext.getParent()
           
 

Methods in com.ibatis.sqlmap.engine.mapping.sql.dynamic.elements with parameters of type IterateContext
 void SqlTagContext.pushIterateContext(IterateContext iterateContext)
          iterate context is stored here for nested dynamic tags in the body of the iterate tag
 void IterateContext.setParent(IterateContext parent)
           
 

Constructors in com.ibatis.sqlmap.engine.mapping.sql.dynamic.elements with parameters of type IterateContext
IterateContext(java.lang.Object collection, SqlTag tag, IterateContext parent)