Uses of Class
jakarta.faces.lifecycle.ClientWindow
-
Packages that use ClientWindow Package Description jakarta.faces.context jakarta.faces.flow jakarta.faces.lifecycle -
-
Uses of ClientWindow in jakarta.faces.context
Methods in jakarta.faces.context that return ClientWindow Modifier and Type Method Description ClientWindow
ExternalContext. getClientWindow()
Return theClientWindow
set in a preceding call toExternalContext.setClientWindow(jakarta.faces.lifecycle.ClientWindow)
, ornull
if no such call has been made.ClientWindow
ExternalContextWrapper. getClientWindow()
The default behavior of this method is to callExternalContext.getClientWindow()
on the wrappedExternalContext
object.Methods in jakarta.faces.context with parameters of type ClientWindow Modifier and Type Method Description void
ExternalContext. setClientWindow(ClientWindow window)
Associate this instance with aClientWindow
.void
ExternalContextWrapper. setClientWindow(ClientWindow window)
The default behavior of this method is to callExternalContext.setClientWindow(jakarta.faces.lifecycle.ClientWindow)
on the wrappedExternalContext
object. -
Uses of ClientWindow in jakarta.faces.flow
Methods in jakarta.faces.flow with parameters of type ClientWindow Modifier and Type Method Description abstract String
Flow. getClientWindowFlowId(ClientWindow curWindow)
Get theClientWindow
's id and append "_" and the return fromFlow.getId()
. -
Uses of ClientWindow in jakarta.faces.lifecycle
Subclasses of ClientWindow in jakarta.faces.lifecycle Modifier and Type Class Description class
ClientWindowWrapper
Wrapper forClientWindow
Methods in jakarta.faces.lifecycle that return ClientWindow Modifier and Type Method Description abstract ClientWindow
ClientWindowFactory. getClientWindow(FacesContext context)
The implementation is responsible for creating theClientWindow
instance for this request.ClientWindow
ClientWindowWrapper. getWrapped()
Constructors in jakarta.faces.lifecycle with parameters of type ClientWindow Constructor Description ClientWindowWrapper(ClientWindow wrapped)
If this client window has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.
-