Uses of Interface
javax.servlet.jsp.tagext.Tag

Packages that use Tag
javax.servlet.jsp.jstl.core Classes and interfaces related to the core tag library component of the JavaServer Pages Standard Tag Library (JSTL). 
javax.servlet.jsp.tagext Classes and interfaces for the definition of JavaServer Pages Tag Libraries. 
 

Uses of Tag in javax.servlet.jsp.jstl.core
 

Subinterfaces of Tag in javax.servlet.jsp.jstl.core
 interface LoopTag
          JSTL allows developers to write custom iteration tags by implementing the LoopTag interface.
 

Classes in javax.servlet.jsp.jstl.core that implement Tag
 class ConditionalTagSupport
          Abstract class that facilitates implementation of conditional actions where the boolean result is exposed as a JSP scoped variable.
 class LoopTagSupport
          Base support class to facilitate implementation of iteration tags.
 

Uses of Tag in javax.servlet.jsp.tagext
 

Subinterfaces of Tag in javax.servlet.jsp.tagext
 interface BodyTag
          The BodyTag interface extends IterationTag by defining additional methods that let a tag handler manipulate the content of evaluating its body.
 interface IterationTag
          The IterationTag interface extends Tag by defining one additional method that controls the reevaluation of its body.
 

Classes in javax.servlet.jsp.tagext that implement Tag
 class BodyTagSupport
          A base class for defining tag handlers implementing BodyTag.
 class TagAdapter
          Wraps any SimpleTag and exposes it using a Tag interface.
 class TagSupport
          A base class for defining new tag handlers implementing Tag.
 

Methods in javax.servlet.jsp.tagext that return Tag
static Tag TagSupport.findAncestorWithClass(Tag from, java.lang.Class klass)
          Find the instance of a given class type that is closest to a given instance.
 Tag TagSupport.getParent()
          The Tag instance most closely enclosing this tag instance.
 Tag Tag.getParent()
          Get the parent (closest enclosing tag handler) for this tag handler.
 Tag TagAdapter.getParent()
          Returns the parent of this tag, which is always getAdaptee().getParent().
 

Methods in javax.servlet.jsp.tagext with parameters of type Tag
static Tag TagSupport.findAncestorWithClass(Tag from, java.lang.Class klass)
          Find the instance of a given class type that is closest to a given instance.
 void TagSupport.setParent(Tag t)
          Set the nesting tag of this tag.
 void Tag.setParent(Tag t)
          Set the parent (closest enclosing tag handler) of this tag handler.
 void TagAdapter.setParent(Tag parentTag)
          Must not be called.
 



Copyright © 1995-2009 Mort Bay Consulting. All Rights Reserved.