Package jakarta.faces.component
Interface NamingContainer
-
- All Known Implementing Classes:
HtmlDataTable
,HtmlForm
,UIData
,UIForm
,UINamingContainer
public interface NamingContainer
NamingContainer is an interface that must be implemented by any
UIComponent
that wants to be a naming container. Naming containers affect the behavior of theUIComponent.findComponent(java.lang.String)
andUIComponent.getClientId()
methods; see those methods for further information.
-
-
Field Summary
Fields Modifier and Type Field Description static char
SEPARATOR_CHAR
The default separator character used in component identifiers to demarcate navigation to a child naming container, in caseUINamingContainer.getSeparatorChar(jakarta.faces.context.FacesContext)
does not resolve to a valid value.
-
-
-
Field Detail
-
SEPARATOR_CHAR
static final char SEPARATOR_CHAR
The default separator character used in component identifiers to demarcate navigation to a child naming container, in case
UINamingContainer.getSeparatorChar(jakarta.faces.context.FacesContext)
does not resolve to a valid value. It is not recommended to use this value directly, theUINamingContainer.getSeparatorChar(jakarta.faces.context.FacesContext)
must be used instead.- See Also:
- Constant Field Values
-
-