| com.ibatis.sqlmap.engine.scope.Scope
All known Subclasses: com.ibatis.sqlmap.engine.scope.BaseScope,
Scope | public interface Scope (Code) | | An interface to simplify access to different scopes (contexts?)
|
getAttribute | public Object getAttribute(Object key)(Code) | | Gets a named object out of the scope
Parameters: key - - the name of the object to get the object |
reset | public void reset()(Code) | | Clears all data out of the scope
|
setAttribute | public void setAttribute(Object key, Object value)(Code) | | Puts a named value into the scope
Parameters: key - - the name of the object to put Parameters: value - - the value to associate with that name |
|
|