Uses of Interface
javax.servlet.jsp.tagext.JspTag
Packages that use JspTag
-
Uses of JspTag in javax.servlet.jsp.tagext
Subinterfaces of JspTag in javax.servlet.jsp.tagextModifier and TypeInterfaceDescriptioninterface
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 javax.servlet.jsp.tagext that implement JspTagModifier and TypeClassDescriptionclass
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.Fields in javax.servlet.jsp.tagext declared as JspTagModifier and TypeFieldDescriptionprivate JspTag
SimpleTagSupport.parentTag
Reference to the enclosing tag.Methods in javax.servlet.jsp.tagext that return JspTagModifier and TypeMethodDescriptionstatic 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 javax.servlet.jsp.tagext with parameters of type JspTagModifier and TypeMethodDescriptionstatic final JspTag
SimpleTagSupport.findAncestorWithClass
(JspTag from, Class<?> klass) Find the instance of a given class type that is closest to a given instance.void
Sets the parent of this tag, for collaboration purposes.void
Sets the parent of this tag, for collaboration purposes. -
Uses of JspTag in org.apache.jasper.runtime
Fields in org.apache.jasper.runtime declared as JspTagModifier and TypeFieldDescriptionprivate JspTag[]
TagHandlerPool.handlers
protected JspTag
JspFragmentHelper.parentTag
Methods in org.apache.jasper.runtime with type parameters of type JspTagModifier and TypeMethodDescriptionGets 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 that return JspTagModifier and TypeMethodDescriptionGets the next available tag handler from this tag handler pool, instantiating one if this tag handler pool is empty.JspFragmentHelper.getParentTag()
Methods in org.apache.jasper.runtime with parameters of type JspTagModifier and TypeMethodDescriptionvoid
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.Constructors in org.apache.jasper.runtime with parameters of type JspTagModifierConstructorDescriptionJspFragmentHelper
(int discriminator, JspContext jspContext, JspTag parentTag) -
Uses of JspTag in org.glassfish.jsp.api
Methods in org.glassfish.jsp.api with type parameters of type JspTagModifier and TypeMethodDescription<T extends JspTag>
TResourceInjector.createTagHandlerInstance
(Class<T> clazz) Instantiates and injects the given tag handler class.Methods in org.glassfish.jsp.api with parameters of type JspTagModifier and TypeMethodDescriptionvoid
ResourceInjector.preDestroy
(JspTag handler) Invokes any @PreDestroy methods defined on the instance's class (and super-classes).