Class VerbatimHandler
java.lang.Object
jakarta.faces.view.facelets.TagHandler
jakarta.faces.view.facelets.MetaTagHandler
jakarta.faces.view.facelets.DelegatingMetaTagHandler
jakarta.faces.view.facelets.ComponentHandler
com.sun.faces.facelets.tag.jsf.core.VerbatimHandler
- All Implemented Interfaces:
FaceletHandler
public final class VerbatimHandler extends ComponentHandler
Handler for f:verbatim
- Author:
- Adam Winer
-
Field Summary
-
Constructor Summary
Constructors Constructor Description VerbatimHandler(ComponentConfig config)
-
Method Summary
Modifier and Type Method Description void
applyNextHandler(FaceletContext ctx, UIComponent c)
Invoke theapply()
method on this instance'sTagHandler.nextHandler
.void
onComponentCreated(FaceletContext ctx, UIComponent c, UIComponent parent)
This method is guaranteed to be called after the component has been created but before it has been populated with children.Methods inherited from class jakarta.faces.view.facelets.ComponentHandler
createComponent, getComponentConfig, getTagHandlerDelegate, isNew, onComponentPopulated
Methods inherited from class jakarta.faces.view.facelets.DelegatingMetaTagHandler
apply, createMetaRuleset, getBinding, getTag, getTagAttribute, getTagId, isDisabled, setAttributes
Methods inherited from class jakarta.faces.view.facelets.TagHandler
getAttribute, getRequiredAttribute, toString
-
Constructor Details
-
Method Details
-
onComponentCreated
Description copied from class:ComponentHandler
This method is guaranteed to be called after the component has been created but before it has been populated with children.
- Overrides:
onComponentCreated
in classComponentHandler
- Parameters:
ctx
- theFaceletContext
for this view executionc
- theUIComponent
that has just been created.parent
- the parentUIComponent
of the component represented by this element instance.
-
applyNextHandler
Description copied from class:DelegatingMetaTagHandler
Invoke the
apply()
method on this instance'sTagHandler.nextHandler
.- Overrides:
applyNextHandler
in classDelegatingMetaTagHandler
- Parameters:
ctx
- theFaceletContext
for this view executionc
- theUIComponent
of the component represented by this element instance.
-