Uses of Interface
jakarta.faces.component.PartialStateHolder
-
Packages that use PartialStateHolder Package Description jakarta.faces.component jakarta.faces.component.behavior jakarta.faces.component.html Specialized user interface component classes for HTML.jakarta.faces.convert jakarta.faces.validator -
-
Uses of PartialStateHolder in jakarta.faces.component
Classes in jakarta.faces.component that implement PartialStateHolder Modifier and Type Class Description class
UIColumn
UIColumn is aUIComponent
that represents a single column of data within a parentUIData
component.class
UICommand
UICommand is aUIComponent
that represents a user interface component which, when activated by the user, triggers an application specific "command" or "action".class
UIComponent
UIComponent is the base class for all user interface components in Jakarta Server Faces.class
UIComponentBase
UIComponentBase is a convenience base class that implements the default concrete behavior of all methods defined byUIComponent
.class
UIData
UIData is aUIComponent
that supports data binding to a collection of data objects represented by aDataModel
instance, which is the current value of this component itself (typically established via aValueExpression
).class
UIForm
UIForm is aUIComponent
that represents an input form to be presented to the user, and whose child components represent (among other things) the input fields to be included when the form is submitted.class
UIGraphic
UIGraphic is aUIComponent
that displays a graphical image to the user.class
UIImportConstants
class
UIInput
UIInput is aUIComponent
that represents a component that both displays output to the user (likeUIOutput
components do) and processes request parameters on the subsequent request that need to be decoded.class
UIMessage
This component is responsible for displaying messages for a specificUIComponent
, identified by aclientId
or component id relative to the closest ancestorNamingContainer
.class
UIMessages
The renderer for this component is responsible for obtaining the messages from theFacesContext
and displaying them to the user.class
UINamingContainer
UINamingContainer is a convenience base class for components that wish to implementNamingContainer
functionality.class
UIOutcomeTarget
This component is paired with thejakarta.faces.Button
orjakarta.faces.Link
renderers and encapsulates properties relating to the rendering of outcomes directly to the response.class
UIOutput
UIOutput is aUIComponent
that has a value, optionally retrieved from a model tier bean via a value expression, that is displayed to the user.class
UIPanel
UIPanel is aUIComponent
that manages the layout of its child components.class
UIParameter
UIParameter is aUIComponent
that represents an optionally named configuration parameter for a parent component.class
UISelectBoolean
class
UISelectItem
UISelectItem is a component that may be nested inside aUISelectMany
orUISelectOne
component, and causes the addition of aSelectItem
instance to the list of available options for the parent component.class
UISelectItemGroup
UISelectItemGroup is a component that may be nested inside aUISelectMany
orUISelectOne
component, and causes the addition of oneSelectItemGroup
of one or moreSelectItem
instances to the list of available options in the parent component.class
UISelectItemGroups
UISelectItemGroups is a component that may be nested inside aUISelectMany
orUISelectOne
component, and causes the addition of one or moreSelectItemGroup
of one or moreSelectItem
instances to the list of available options in the parent component.class
UISelectItems
UISelectItems is a component that may be nested inside aUISelectMany
orUISelectOne
component, and causes the addition of one or moreSelectItem
instances to the list of available options in the parent component.class
UISelectMany
UISelectMany is aUIComponent
that represents the user's choice of a zero or more items from among a discrete set of available options.class
UISelectOne
UISelectOne is aUIComponent
that represents the user's choice of zero or one items from among a discrete set of available options.class
UIViewAction
UIViewAction represents a method invocation that occurs during the request processing lifecycle, usually in response to an initial request, as opposed to a postback.class
UIViewParameter
UIViewParameter represents a binding between a request parameter and a model property orUIViewRoot
property.class
UIViewRoot
UIViewRoot is the UIComponent that represents the root of the UIComponent tree.class
UIWebsocket
The<f:websocket>
tag opens an one-way (server to client) websocket based push connection in client side which can be reached from server side viaPushContext
interface injected in any CDI/container managed artifact via@
Push
annotation. -
Uses of PartialStateHolder in jakarta.faces.component.behavior
Classes in jakarta.faces.component.behavior that implement PartialStateHolder Modifier and Type Class Description class
AjaxBehavior
An instance of this class is added as aClientBehavior
to a component using theClientBehaviorHolder.addClientBehavior(java.lang.String, jakarta.faces.component.behavior.ClientBehavior)
contract that components implement.class
BehaviorBase
BehaviorBase is a convenience base class that provides a default implementation of theBehavior
contract.class
ClientBehaviorBase
ClientBehaviorBase is a convenience base class that implements the default concrete behavior of all methods defined byClientBehavior
. -
Uses of PartialStateHolder in jakarta.faces.component.html
Classes in jakarta.faces.component.html that implement PartialStateHolder Modifier and Type Class Description class
HtmlBody
NONEclass
HtmlColumn
Represents a column that will be rendered in an HTMLtable
element.class
HtmlCommandButton
Represents an HTMLinput
element for a button of typesubmit
orreset
.class
HtmlCommandLink
Represents an HTMLa
element for a hyperlink that acts like a submit button.class
HtmlCommandScript
Represents an HTMLscript
element for a function that acts like an ajax form submit.class
HtmlDataTable
Represents a set of repeating data (segregated into columns by child UIColumn components) that will be rendered in an HTMLtable
element.class
HtmlDoctype
NONEclass
HtmlForm
Represents an HTMLform
element.class
HtmlGraphicImage
Represents an HTMLimg
element, used to retrieve and render a graphical image.class
HtmlHead
NONEclass
HtmlInputFile
Represents an HTMLinput
element of typefile
.class
HtmlInputHidden
Represents an HTMLinput
element of typehidden
.class
HtmlInputSecret
Represents an HTMLinput
element of typepassword
.class
HtmlInputText
Represents an HTMLinput
element of typetext
.class
HtmlInputTextarea
Represents an HTMLtextarea
element.class
HtmlMessage
By default, therendererType
property must be set to "jakarta.faces.Message
".class
HtmlMessages
By default, therendererType
property must be set to "jakarta.faces.Messages
".class
HtmlOutcomeTargetButton
Represents an HTMLinput
element of type "button" or image that may be used to link to a URL handled by the Faces Servlet resolved preemptively using the logical outcome defined by theoutcome
property.class
HtmlOutcomeTargetLink
Represents an HTMLa
(hyperlink) element that may be used to link to a URL handled by the Faces Servlet resolved preemptively using the logical outcome defined by theoutcome
property.class
HtmlOutputFormat
Represents a component that looks up a localized message in a resource bundle, optionally uses it as aMessageFormat
pattern string and substitutes in parameter values from nested UIParameter components, and renders the result.class
HtmlOutputLabel
Represents an HTMLlabel
element, used to define an accessible label for a corresponding input element.class
HtmlOutputLink
Represents an HTMLa
(hyperlink) element that may be used to link to an arbitrary URL defined by thevalue
property.class
HtmlOutputText
Renders the component value as text, optionally wrapping in aspan
element if I18N attributes, CSS styles or style classes are specified.class
HtmlPanelGrid
Renders child components in a table, starting a new row after the specified number of columns.class
HtmlPanelGroup
Causes all child components of this component to be rendered.class
HtmlSelectBooleanCheckbox
Represents an HTMLinput
element of typecheckbox
.class
HtmlSelectManyCheckbox
Represents a multiple-selection component that is rendered as a set of HTMLinput
elements of typecheckbox
.class
HtmlSelectManyListbox
Represents a multiple-selection component that is rendered as an HTMLselect
element, showing either all available options or the specified number of options.class
HtmlSelectManyMenu
Represents a multiple-selection component that is rendered as an HTMLselect
element, showing a single available option at a time.class
HtmlSelectOneListbox
Represents a single-selection component that is rendered as an HTMLselect
element, showing either all available options or the specified number of options.class
HtmlSelectOneMenu
Represents a single-selection component that is rendered as an HTMLselect
element, showing a single available option at a time.class
HtmlSelectOneRadio
Represents a single-selection component that is rendered as a set of HTMLinput
elements of typeradio
. -
Uses of PartialStateHolder in jakarta.faces.convert
Classes in jakarta.faces.convert that implement PartialStateHolder Modifier and Type Class Description class
DateTimeConverter
Converter
implementation forjava.util.Date
values.class
EnumConverter
Converter
implementation forjava.lang.Enum
(and enum primitive) values.class
NumberConverter
Converter
implementation forjava.lang.Number
values. -
Uses of PartialStateHolder in jakarta.faces.validator
Classes in jakarta.faces.validator that implement PartialStateHolder Modifier and Type Class Description class
BeanValidator
A Validator that delegates validation of the bean property to the Bean Validation API.class
DoubleRangeValidator
DoubleRangeValidator is aValidator
that checks the value of the corresponding component against specified minimum and maximum values.class
LengthValidator
LengthValidator is aValidator
that checks the number of characters in the String representation of the value of the associated component.class
LongRangeValidator
LongRangeValidator is aValidator
that checks the value of the corresponding component against specified minimum and maximum values.class
RegexValidator
A Validator that checks against a Regular Expression (which is the pattern property).
-