org.apache.tapestry.parse
Class CloseToken

java.lang.Object
  extended by org.apache.tapestry.parse.TemplateToken
      extended by org.apache.tapestry.parse.CloseToken
All Implemented Interfaces:
ILocatable

public class CloseToken
extends TemplateToken

Represents the closing tag of a component element in the template.

Since:
3.0
Version:
$Id: CloseToken.java 243791 2004-02-19 17:38:13Z hlship $
Author:
Howard Lewis Ship
See Also:
TokenType.CLOSE

Constructor Summary
CloseToken(String tag, ILocation location)
           
 
Method Summary
protected  void extendDescription(org.apache.commons.lang.builder.ToStringBuilder builder)
          Overridden in subclasses to append additional fields (defined in the subclass) to the description.
 String getTag()
           
 
Methods inherited from class org.apache.tapestry.parse.TemplateToken
getLocation, getType, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CloseToken

public CloseToken(String tag,
                  ILocation location)
Method Detail

getTag

public String getTag()

extendDescription

protected void extendDescription(org.apache.commons.lang.builder.ToStringBuilder builder)
Description copied from class: TemplateToken
Overridden in subclasses to append additional fields (defined in the subclass) to the description. Subclasses may override this method without invoking this implementation, which is empty.

Overrides:
extendDescription in class TemplateToken