A VisitContext implementation that is used when performing a full component tree visit.
RELEASE_PENDING- Since:
- 2.0
-
Field Summary
Fields inherited from class jakarta.faces.component.visit.VisitContext
ALL_IDS
-
Constructor Summary
ConstructorDescriptionFullVisitContext
(FacesContext facesContext) Creates a FullVisitorContext instance.FullVisitContext
(FacesContext facesContext, Set<VisitHint> hints) Creates a FullVisitorContext instance with the specified hints. -
Method Summary
Modifier and TypeMethodDescriptionReturns the FacesContext for the current request.getHints()
Returns hints that influence the behavior of the tree visit.Returns the ids of the components to visit.getSubtreeIdsToVisit
(UIComponent component) Given aNamingContainer
component, returns the client ids of any components underneath the NamingContainer that should be visited.invokeVisitCallback
(UIComponent component, VisitCallback callback) Called byUIComponent.visitTree()
to visit a single component.Methods inherited from class jakarta.faces.component.visit.VisitContext
createVisitContext, createVisitContext
-
Constructor Details
-
FullVisitContext
Creates a FullVisitorContext instance.- Parameters:
facesContext
- the FacesContext for the current request- Throws:
NullPointerException
- iffacesContext
isnull
-
FullVisitContext
Creates a FullVisitorContext instance with the specified hints.- Parameters:
facesContext
- the FacesContext for the current requesthints
- a the VisitHints for this visit- Throws:
NullPointerException
- iffacesContext
isnull
-
-
Method Details
-
getFacesContext
Description copied from class:VisitContext
Returns the FacesContext for the current request.
- Specified by:
getFacesContext
in classVisitContext
- Returns:
- the FacesContext.
- See Also:
-
getIdsToVisit
Description copied from class:VisitContext
Returns the ids of the components to visit.
In the case of a full tree visit, this method returns the ALL_IDS collection. Otherwise, if a partial visit is beign performed, returns a modifiable collection containing the client ids of the components that should be visited.
- Specified by:
getIdsToVisit
in classVisitContext
- Returns:
- the ids of the components to visit
- See Also:
-
getSubtreeIdsToVisit
Description copied from class:VisitContext
Given a
NamingContainer
component, returns the client ids of any components underneath the NamingContainer that should be visited.This method is called by NamingContainer visitTree() implementations to determine whether the NamingContainer contains components to be visited. In the case where no such components exist, the NamingContainer can short-circuit the tree visit and avoid descending into child subtrees.
In addition, iterating components such as UIData may be able to use the returned ids to determine which iterated states (ie. rows) need to be visited. This allows the visit traversal to be contstrained such only those rows that contain visit targets need to be traversed.
- Specified by:
getSubtreeIdsToVisit
in classVisitContext
- Parameters:
component
- a NamingContainer component- Returns:
- an unmodifiable Collection containing the client ids of any components underneath the NamingContainer that
are known to be targets of the tree visit. If no such components exist, returns an empty Collection. If all
components underneath the NamingContainer should be visited, returns the
VisitContext.ALL_IDS
collection. - See Also:
-
getHints
Description copied from class:VisitContext
Returns hints that influence the behavior of the tree visit.
Interested parties, such as
UIComponent.visitTree()
implementations, may check to see whether a particular hint is present by callingVisitContext.getHints().contains()
, passing in one of the hints defined byVisitHint
.- Specified by:
getHints
in classVisitContext
- Returns:
- a non-empty, unmodifiable collection of VisitHints
- See Also:
-
invokeVisitCallback
Description copied from class:VisitContext
Called by
UIComponent.visitTree()
to visit a single component.- Specified by:
invokeVisitCallback
in classVisitContext
- Parameters:
component
- the component to visitcallback
- the VisitCallback to call- Returns:
- a VisitResult value that indicates whether to continue visiting the component's subtree, skip visiting the component's subtree or abort the visit altogether.
- See Also:
-