Uses of Interface
jakarta.servlet.jsp.tagext.JspTag

Packages that use JspTag
Package
Description
Classes and interfaces for the definition of Jakarta Server Pages Tag Libraries.
  • Uses of JspTag in jakarta.servlet.jsp.tagext

    Modifier and Type
    Interface
    Description
    interface 
    The BodyTag interface extends IterationTag by defining additional methods that let a tag handler manipulate the content of evaluating its body.
    interface 
    The IterationTag interface extends Tag by defining one additional method that controls the reevaluation of its body.
    interface 
    Interface for defining Simple Tag Handlers.
    interface 
    The interface of a classic tag handler that does not want to manipulate its body.
    Classes in jakarta.servlet.jsp.tagext that implement JspTag
    Modifier and Type
    Class
    Description
    class 
    A base class for defining tag handlers implementing BodyTag.
    class 
    A base class for defining tag handlers implementing SimpleTag.
    class 
    Wraps any SimpleTag and exposes it using a Tag interface.
    class 
    A base class for defining new tag handlers implementing Tag.
    Methods in jakarta.servlet.jsp.tagext that return JspTag
    Modifier and Type
    Method
    Description
    static final JspTag
    SimpleTagSupport.findAncestorWithClass(JspTag from, Class<?> klass)
    Find the instance of a given class type that is closest to a given instance.
    TagAdapter.getAdaptee()
    Gets the tag that is being adapted to the Tag interface.
    SimpleTag.getParent()
    Returns the parent of this tag, for collaboration purposes.
    SimpleTagSupport.getParent()
    Returns the parent of this tag, for collaboration purposes.
    Methods in jakarta.servlet.jsp.tagext with parameters of type JspTag
    Modifier and Type
    Method
    Description
    static final JspTag
    SimpleTagSupport.findAncestorWithClass(JspTag from, Class<?> klass)
    Find the instance of a given class type that is closest to a given instance.
    void
    SimpleTag.setParent(JspTag parent)
    Sets the parent of this tag, for collaboration purposes.
    void
    SimpleTagSupport.setParent(JspTag parent)
    Sets the parent of this tag, for collaboration purposes.