Uses of Interface
jakarta.servlet.jsp.tagext.JspTag
-
Packages that use JspTag Package Description jakarta.servlet.jsp.tagext org.apache.jasper.runtime -
-
Uses of JspTag in jakarta.servlet.jsp.tagext
Subinterfaces of JspTag 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.interfaceSimpleTagInterface for defining Simple Tag Handlers.interfaceTagThe 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 classBodyTagSupportA base class for defining tag handlers implementing BodyTag.classSimpleTagSupportA base class for defining tag handlers implementing SimpleTag.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 JspTag Modifier and Type Method Description static JspTagSimpleTagSupport. findAncestorWithClass(JspTag from, java.lang.Class<?> klass)Find the instance of a given class type that is closest to a given instance.JspTagTagAdapter. getAdaptee()Gets the tag that is being adapted to the Tag interface.JspTagSimpleTag. getParent()Returns the parent of this tag, for collaboration purposes.JspTagSimpleTagSupport. 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 JspTagSimpleTagSupport. findAncestorWithClass(JspTag from, java.lang.Class<?> klass)Find the instance of a given class type that is closest to a given instance.voidSimpleTag. setParent(JspTag parent)Sets the parent of this tag, for collaboration purposes.voidSimpleTagSupport. setParent(JspTag parent)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 JspTag Modifier and Type Field Description protected JspTagJspFragmentHelper. parentTagMethods in org.apache.jasper.runtime that return JspTag Modifier and Type Method Description JspTagJspFragmentHelper. getParentTag()Constructors in org.apache.jasper.runtime with parameters of type JspTag Constructor Description JspContextWrapper(JspTag jspTag, JspContext jspContext, java.util.ArrayList<java.lang.String> nestedVars, java.util.ArrayList<java.lang.String> atBeginVars, java.util.ArrayList<java.lang.String> atEndVars, java.util.Map<java.lang.String,java.lang.String> aliases)JspFragmentHelper(int discriminator, JspContext jspContext, JspTag parentTag)
-