Uses of Class
jakarta.faces.component.visit.VisitContext
Packages that use VisitContext
-
Uses of VisitContext in jakarta.faces.component
Methods in jakarta.faces.component with parameters of type VisitContextModifier and TypeMethodDescriptionprotected booleanUIComponent.isVisitable(VisitContext context) Returntrueif this component should be visited,falseotherwise.booleanUIComponent.visitTree(VisitContext visitContext, VisitCallback callback) Perform a tree visit starting at this node in the tree.booleanUIData.visitTree(VisitContext context, VisitCallback callback) Override the behavior inUIComponent.visitTree(jakarta.faces.component.visit.VisitContext, jakarta.faces.component.visit.VisitCallback)to handle iteration correctly.booleanUIForm.visitTree(VisitContext context, VisitCallback callback) booleanUINamingContainer.visitTree(VisitContext context, VisitCallback callback) -
Uses of VisitContext in jakarta.faces.component.visit
Subclasses of VisitContext in jakarta.faces.component.visitModifier and TypeClassDescriptionclassProvides a simple implementation ofVisitContextthat can be subclassed by developers wishing to provide specialized behavior to an existingVisitContextinstance.Methods in jakarta.faces.component.visit that return VisitContextModifier and TypeMethodDescriptionstatic VisitContextVisitContext.createVisitContext(FacesContext context) Creates a VisitContext instance for use withUIComponent.visitTree().static VisitContextVisitContext.createVisitContext(FacesContext context, Collection<String> ids, Set<VisitHint> hints) Returns a VisitContext instance that is initialized with the specified ids and hintsfor use withUIComponent.visitTree(jakarta.faces.component.visit.VisitContext, jakarta.faces.component.visit.VisitCallback).abstract VisitContextVisitContextFactory.getVisitContext(FacesContext context, Collection<String> ids, Set<VisitHint> hints) Return a newVisitContextinstance.VisitContextWrapper.getWrapped()Methods in jakarta.faces.component.visit with parameters of type VisitContextModifier and TypeMethodDescriptionVisitCallback.visit(VisitContext context, UIComponent target) This method is called during component tree visits byVisitContext.invokeVisitCallback()to visit the specified component.Constructors in jakarta.faces.component.visit with parameters of type VisitContextModifierConstructorDescriptionVisitContextWrapper(VisitContext wrapped) If this visit context has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.