org.apache.tiles.jsp.taglib
Class TilesBodyTag

java.lang.Object
  extended by BodyTagSupport
      extended by org.apache.tiles.jsp.taglib.TilesBodyTag
Direct Known Subclasses:
InitContainerTag

Deprecated. Since simple style of tags is used, this class is useless.

@Deprecated
public abstract class TilesBodyTag
extends BodyTagSupport

An abstract common base class to extend for all Tiles JSP tag handlers which access body content. Defines useful life cycle extension points.

Since:
2.1.1
Version:
$Rev: 783101 $ $Date: 2009-06-09 21:27:26 +0200 (mar, 09 giu 2009) $

Constructor Summary
TilesBodyTag()
          Deprecated.  
 
Method Summary
 void doCatch(java.lang.Throwable throwable)
          Deprecated. Default no-op implementation, but overrideable if needed.
 void doFinally()
          Deprecated. Called after doEndTag().
 void release()
          Deprecated. Release any per-instance resources, releasing any resources or state before this tag instance is disposed.
protected  void reset()
          Deprecated. Release any per-invocation resources, resetting any resources or state that should be cleared between successive invocations of javax.servlet.jsp.tagext.Tag#doEndTag() and javax.servlet.jsp.tagext.Tag#doStartTag().
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TilesBodyTag

public TilesBodyTag()
Deprecated. 
Method Detail

doCatch

public void doCatch(java.lang.Throwable throwable)
             throws java.lang.Throwable
Deprecated. 
Default no-op implementation, but overrideable if needed.

Parameters:
throwable - The throwable object.
Throws:
java.lang.Throwable - The throwable object itself, by default.
See Also:
TryCatchFinally#doCatch(Throwable)

doFinally

public void doFinally()
Deprecated. 
Called after doEndTag(). This common implementation calls reset() to release any per-invocation resources.

See Also:
TryCatchFinally#doFinally()

reset

protected void reset()
Deprecated. 
Release any per-invocation resources, resetting any resources or state that should be cleared between successive invocations of javax.servlet.jsp.tagext.Tag#doEndTag() and javax.servlet.jsp.tagext.Tag#doStartTag().


release

public void release()
Deprecated. 
Release any per-instance resources, releasing any resources or state before this tag instance is disposed.

See Also:
javax.servlet.jsp.tagext.Tag#release()