Uses of Interface
jakarta.servlet.jsp.tagext.Tag
-
Packages that use Tag Package Description jakarta.servlet.jsp.tagext org.apache.jasper.runtime -
-
Uses of Tag in jakarta.servlet.jsp.tagext
Subinterfaces of Tag in jakarta.servlet.jsp.tagext Modifier and Type Interface Description interfaceBodyTagThe BodyTag interface extends IterationTag by defining additional methods that let a tag handler manipulate the content of evaluating its body.interfaceIterationTagThe IterationTag interface extends Tag by defining one additional method that controls the reevaluation of its body.Classes in jakarta.servlet.jsp.tagext that implement Tag Modifier and Type Class Description classBodyTagSupportA base class for defining tag handlers implementing BodyTag.classTagAdapterWraps any SimpleTag and exposes it using a Tag interface.classTagSupportA base class for defining new tag handlers implementing Tag.Methods in jakarta.servlet.jsp.tagext that return Tag Modifier and Type Method Description static TagTagSupport. findAncestorWithClass(Tag from, java.lang.Class<?> klass)Find the instance of a given class type that is closest to a given instance.TagTag. getParent()Get the parent (closest enclosing tag handler) for this tag handler.TagTagAdapter. getParent()Returns the parent of this tag, which is always getAdaptee().getParent().TagTagSupport. getParent()The Tag instance most closely enclosing this tag instance.Methods in jakarta.servlet.jsp.tagext with parameters of type Tag Modifier and Type Method Description static TagTagSupport. findAncestorWithClass(Tag from, java.lang.Class<?> klass)Find the instance of a given class type that is closest to a given instance.voidTag. setParent(Tag t)Set the parent (closest enclosing tag handler) of this tag handler.voidTagAdapter. setParent(Tag parentTag)Must not be called.voidTagSupport. setParent(Tag t)Set the nesting tag of this tag. -
Uses of Tag in org.apache.jasper.runtime
Methods in org.apache.jasper.runtime that return Tag Modifier and Type Method Description TagTagHandlerPool. get(java.lang.Class<? extends Tag> handlerClass)Gets the next available tag handler from this tag handler pool, instantiating one if this tag handler pool is empty.Methods in org.apache.jasper.runtime with parameters of type Tag Modifier and Type Method Description protected static voidJspRuntimeLibrary. releaseTag(Tag tag, InstanceManager instanceManager)static voidJspRuntimeLibrary. releaseTag(Tag tag, InstanceManager instanceManager, boolean reused)voidTagHandlerPool. reuse(Tag handler)Adds the given tag handler to this tag handler pool, unless this tag handler pool has already reached its capacity, in which case the tag handler's release() method is called.Method parameters in org.apache.jasper.runtime with type arguments of type Tag Modifier and Type Method Description TagTagHandlerPool. get(java.lang.Class<? extends Tag> handlerClass)Gets the next available tag handler from this tag handler pool, instantiating one if this tag handler pool is empty.
-