| java.lang.Object org.apache.turbine.om.OMTool
Constructor Summary | |
public | OMTool() |
dispose | public void dispose()(Code) | | Disposes the object after use. The method is called
when the object is returned to its pool.
The dispose method must call its super.
|
init | public void init(Object runData)(Code) | | Prepares tool for a single request
|
isDisposed | public boolean isDisposed()(Code) | | Checks whether the recyclable has been disposed.
true, if the recyclable is disposed. |
recycle | public void recycle()(Code) | | Recycles the object for a new client. Recycle methods with
parameters must be added to implementing object and they will be
automatically called by pool implementations when the object is
taken from the pool for a new client. The parameters must
correspond to the parameters of the constructors of the object.
For new objects, constructors can call their corresponding recycle
methods whenever applicable.
The recycle methods must call their super.
|
refresh | public void refresh()(Code) | | Implementation of ApplicationTool interface is not needed for this
method as the tool is request scoped
|
|
|