Uses of Class
jakarta.faces.application.ViewHandler
Package | Description |
---|---|
com.sun.faces.application | |
com.sun.faces.application.applicationimpl | |
com.sun.faces.application.view | |
com.sun.faces.util | |
jakarta.faces.application |
-
Uses of ViewHandler in com.sun.faces.application
Subclasses of ViewHandler in com.sun.faces.application Modifier and Type Class Description class
ViewHandlerImpl
Deprecated.Refer toMultiViewHandler
Methods in com.sun.faces.application that return ViewHandler Modifier and Type Method Description ViewHandler
ApplicationImpl. getViewHandler()
Methods in com.sun.faces.application with parameters of type ViewHandler Modifier and Type Method Description void
ApplicationImpl. setViewHandler(ViewHandler viewHandler)
-
Uses of ViewHandler in com.sun.faces.application.applicationimpl
Methods in com.sun.faces.application.applicationimpl that return ViewHandler Modifier and Type Method Description ViewHandler
Singletons. getViewHandler()
Methods in com.sun.faces.application.applicationimpl with parameters of type ViewHandler Modifier and Type Method Description void
Singletons. setViewHandler(ViewHandler viewHandler)
-
Uses of ViewHandler in com.sun.faces.application.view
Subclasses of ViewHandler in com.sun.faces.application.view Modifier and Type Class Description class
MultiViewHandler
ThisViewHandler
implementation handles both JSP-based and Facelets/PDL-based views. -
Uses of ViewHandler in com.sun.faces.util
Methods in com.sun.faces.util that return ViewHandler Modifier and Type Method Description static ViewHandler
Util. getViewHandler(FacesContext context)
-
Uses of ViewHandler in jakarta.faces.application
Subclasses of ViewHandler in jakarta.faces.application Modifier and Type Class Description class
ViewHandlerWrapper
Provides a simple implementation ofViewHandler
that can be subclassed by developers wishing to provide specialized behavior to an existingViewHandler
instance.Methods in jakarta.faces.application that return ViewHandler Modifier and Type Method Description abstract ViewHandler
Application. getViewHandler()
Return theViewHandler
instance that will be utilized during the Restore View and Render Response phases of the request processing lifecycle.ViewHandler
ApplicationWrapper. getViewHandler()
The default behavior of this method is to callApplication.getViewHandler()
on the wrappedApplication
object.ViewHandler
ViewHandlerWrapper. getWrapped()
Methods in jakarta.faces.application with parameters of type ViewHandler Modifier and Type Method Description abstract void
Application. setViewHandler(ViewHandler handler)
Set theViewHandler
instance that will be utilized during the Restore View and Render Response phases of the request processing lifecycle.void
ApplicationWrapper. setViewHandler(ViewHandler handler)
The default behavior of this method is to callApplication.setViewHandler(ViewHandler)
on the wrappedApplication
object.Constructors in jakarta.faces.application with parameters of type ViewHandler Constructor Description ViewHandlerWrapper(ViewHandler wrapped)
If this view handler has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor.