Uses of Interface
jakarta.faces.component.ContextCallback
-
Packages that use ContextCallback Package Description jakarta.faces.component jakarta.faces.component.search -
-
Uses of ContextCallback in jakarta.faces.component
Methods in jakarta.faces.component with parameters of type ContextCallback Modifier and Type Method Description boolean
UIComponent. invokeOnComponent(FacesContext context, String clientId, ContextCallback callback)
Starting at this component in the View hierarchy, search for a component with aclientId
equal to the argumentclientId
and, if found, call theinvokeContextCallback(jakarta.faces.context.FacesContext, jakarta.faces.component.UIComponent)
method on the argumentcallback
, passing the currentFacesContext
and the found component as arguments.boolean
UIComponentBase. invokeOnComponent(FacesContext context, String clientId, ContextCallback callback)
Starting at this component in the View hierarchy, search for a component with aclientId
equal to the argumentclientId
and, if found, call theinvokeContextCallback(jakarta.faces.context.FacesContext, jakarta.faces.component.UIComponent)
method on the argumentcallback
, passing the currentFacesContext
and the found component as arguments.boolean
UIData. invokeOnComponent(FacesContext context, String clientId, ContextCallback callback)
Override behavior fromUIComponentBase.invokeOnComponent(jakarta.faces.context.FacesContext, java.lang.String, jakarta.faces.component.ContextCallback)
to provide special care for positioning the data properly before finding the component and invoking the callback on it.boolean
UIForm. invokeOnComponent(FacesContext context, String clientId, ContextCallback callback)
-
Uses of ContextCallback in jakarta.faces.component.search
Methods in jakarta.faces.component.search that return ContextCallback Modifier and Type Method Description ContextCallback
SearchKeywordContext. getCallback()
Returns theContextCallback
for the current request.Methods in jakarta.faces.component.search with parameters of type ContextCallback Modifier and Type Method Description abstract void
SearchExpressionHandler. invokeOnComponent(SearchExpressionContext searchExpressionContext, UIComponent previous, String expression, ContextCallback callback)
Resolves multipleUIComponent
s for the given expression.void
SearchExpressionHandler. invokeOnComponent(SearchExpressionContext searchExpressionContext, String expression, ContextCallback callback)
Resolves multipleUIComponent
s for the given expression.void
SearchExpressionHandlerWrapper. invokeOnComponent(SearchExpressionContext searchExpressionContext, UIComponent previous, String expression, ContextCallback callback)
void
SearchExpressionHandlerWrapper. invokeOnComponent(SearchExpressionContext searchExpressionContext, String expression, ContextCallback callback)
abstract void
SearchExpressionHandler. resolveComponent(SearchExpressionContext searchExpressionContext, String expression, ContextCallback callback)
Resolves a singleUIComponent
s for the given expression.void
SearchExpressionHandlerWrapper. resolveComponent(SearchExpressionContext searchExpressionContext, String expression, ContextCallback callback)
abstract void
SearchExpressionHandler. resolveComponents(SearchExpressionContext searchExpressionContext, String expressions, ContextCallback callback)
Resolves multipleUIComponent
s for the given expression(s).void
SearchExpressionHandlerWrapper. resolveComponents(SearchExpressionContext searchExpressionContext, String expressions, ContextCallback callback)
Constructors in jakarta.faces.component.search with parameters of type ContextCallback Constructor Description SearchKeywordContext(SearchExpressionContext searchExpressionContext, ContextCallback callback, String remainingExpression)
Construct a new context with the given arguments.
-