Uses of Class
jakarta.faces.render.Renderer
Package
Description
-
Uses of Renderer in com.sun.faces.application.annotation
Modifier and TypeMethodDescriptionvoid
AnnotationManager.applyRendererAnnotations
(FacesContext ctx, Renderer r, UIComponent c) Apply annotations relevent toRenderer
instances. -
Uses of Renderer in com.sun.faces.facelets.compiler
-
Uses of Renderer in com.sun.faces.facelets.component
-
Uses of Renderer in com.sun.faces.facelets.tag.composite
Modifier and TypeMethodDescriptionprotected Renderer
BehaviorHolderWrapper.getRenderer
(FacesContext context) -
Uses of Renderer in com.sun.faces.renderkit
Modifier and TypeMethodDescriptionvoid
RenderKitImpl.addRenderer
(String family, String rendererType, Renderer renderer) -
Uses of Renderer in com.sun.faces.renderkit.html_basic
Modifier and TypeClassDescriptionclass
Base class for concrete Grid and Table renderers.class
ThisRenderer
is responsible for rendering the standard HTML body element as well as rendering any resources that should be output before thebody
tag is closed.class
ButtonRenderer is a class that renders the current value ofUICommand
as a Button.class
CheckboxRenderer is a class that renders the current value ofUISelectBoolean
as a checkbox.class
CommandLinkRenderer is a class that renders the current value ofUICommand
as a HyperLink that acts like a Button.class
CommandScriptRenderer is a class that renders the current value ofUICommand
as a Script that acts like an Ajax Button.class
ThisRenderer
is responsible for rendering the content of a facet defined within the using page template in the desired location within the composite component implementation section.class
ThisRenderer
is responsible for rendering the children defined within the composite implementation section of a composite component template.class
class
class
FormRenderer is a class that renders aUIForm
as a Form.class
GridRenderer is a class that rendersUIPanel
component as a "Grid".class
Arbitrary grouping "renderer" that simply renders its children recursively in theencodeEnd()
method.class
/**class
HiddenRenderer is a class that renders the current value ofUIInput
component as a HTML hidden variable.class
HtmlBasicInputRenderer is a base class for implementing renderers that support UIInput type componentsclass
HtmlBasicRenderer is a base class for implementing renderers for HtmlBasicRenderKit.class
ImageRenderer is a class that handles the rendering of the graphic ImageTagclass
LabelRenderer renders Label element.class
LinkRenderer acts as superclass for CommandLinkRenderer and OutputLinkRenderer.class
ListRenderer is a class that renders the current value ofUISelectOne
orUISelectMany
component as a list of options.class
MenuRenderer is a class that renders the current value ofUISelectOne
orUISelectMany
component as a list of menu options.class
MessageRenderer handles rendering for the Messageclass
MessagesRenderer handles rendering for the Messagesclass
class
class
class
OutputLinkRenderer is a class ...class
OutputMessageRenderer is a class that renderes UIOutputclass
class
ReadoRenderer is a class that renders the current value ofUISelectOne
orUISelectMany
component as a list of radio buttonsclass
ThisRenderer
handles the rendering ofscript
references.class
Base class for shared behavior between Script and Stylesheet renderers.class
SecretRenderer is a class that renders the current value ofUIInput
component as a password field.class
SelectManyCheckboxListRenderer is a class that renders the current value ofUISelectMany
component as a list of checkboxes.class
ThisRenderer
handles the rendering ofstylesheet
references.class
Render aUIData
component as a two-dimensional table.class
TextareaRenderer is a class that renders the current value ofUIInput
component as a Textarea.class
TextRenderer is a class that renders the current value ofUIInput
orUIOutput
component as a input field or static text.class
WebsocketRenderer is a class that renders thefaces.push.init()
script and decodes any client behaviors triggered byUIWebsocket
. -
Uses of Renderer in jakarta.faces.component
Modifier and TypeMethodDescriptionprotected abstract Renderer
UIComponent.getRenderer
(FacesContext context) Convenience method to return theRenderer
instance associated with this component, if any; otherwise, returnnull
.protected Renderer
UIComponentBase.getRenderer
(FacesContext context) -
Uses of Renderer in jakarta.faces.render
Modifier and TypeClassDescriptionclass
Modifier and TypeMethodDescriptionabstract Renderer
RenderKit.getRenderer
(String family, String rendererType) Return theRenderer
instance most recently registered for the specified componentfamily
andrendererType
, if any; otherwise, returnnull
.RenderKitWrapper.getRenderer
(String family, String rendererType) The default behavior of this method is to callRenderKit.getRenderer(String, String)
on the wrappedRenderKit
object.RendererWrapper.getWrapped()
Modifier and TypeMethodDescriptionabstract void
RenderKit.addRenderer
(String family, String rendererType, Renderer renderer) void
RenderKitWrapper.addRenderer
(String family, String rendererType, Renderer renderer) The default behavior of this method is to callRenderKit.addRenderer(String, String, Renderer)
on the wrappedRenderKit
object.ModifierConstructorDescriptionRendererWrapper
(Renderer wrapped) If this renderer has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.