Package | Description |
---|---|
jakarta.faces.component | |
jakarta.faces.component.visit |
Modifier and Type | Method and Description |
---|---|
protected boolean |
UIComponent.isVisitable(VisitContext context)
This method indicates if a component is visitable
according to the hints passed by the VisitContext parameter!
This method internally is used by visitTree and if it returns false
it short circuits the visitTree execution.
|
boolean |
UINamingContainer.visitTree(VisitContext context,
VisitCallback callback) |
boolean |
UIComponent.visitTree(VisitContext context,
VisitCallback callback)
The visit tree method, visit tree walks over a subtree and processes
the callback object to perform some operation on the subtree
|
boolean |
UIForm.visitTree(VisitContext context,
VisitCallback callback) |
boolean |
UIComponentBase.visitTree(VisitContext context,
VisitCallback callback) |
boolean |
UIData.visitTree(VisitContext context,
VisitCallback callback)
Overrides the behavior in
UIComponent.visitTree(jakarta.faces.component.visit.VisitContext, jakarta.faces.component.visit.VisitCallback)
to handle iteration correctly.
|
Modifier and Type | Class and Description |
---|---|
class |
VisitContextWrapper |
Modifier and Type | Method and Description |
---|---|
static VisitContext |
VisitContext.createVisitContext(FacesContext context) |
static VisitContext |
VisitContext.createVisitContext(FacesContext context,
Collection<String> ids,
Set<VisitHint> hints) |
abstract VisitContext |
VisitContextFactory.getVisitContext(FacesContext context,
Collection<String> ids,
Set<VisitHint> hints) |
VisitContext |
VisitContextWrapper.getWrapped() |
Modifier and Type | Method and Description |
---|---|
VisitResult |
VisitCallback.visit(VisitContext context,
UIComponent target)
This method is called during component tree visits by
VisitContext.invokeVisitCallback()
to visit the specified component. |
Constructor and Description |
---|
VisitContextWrapper(VisitContext delegate) |
Copyright © 2021 The Apache Software Foundation. All rights reserved.