Package javax.faces.context
Class PartialViewContextFactory
java.lang.Object
javax.faces.context.PartialViewContextFactory
- All Implemented Interfaces:
FacesWrapper<PartialViewContextFactory>
public abstract class PartialViewContextFactory
extends Object
implements FacesWrapper<PartialViewContextFactory>
PartialViewContextFactory is a
factory object that creates (if needed) and returns new PartialViewContext
instances.
There must be one PartialViewContextFactory
instance per web
application that is utilizing JavaServer Faces. This instance can be
acquired, in a portable manner, by calling:
PartialViewContextFactory factory = (PartialViewContextFactory) FactoryFinder.getFactory(FactoryFinder.PARTIAL_VIEW_CONTEXT_FACTORY);
- Since:
- 2.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract PartialViewContext
getPartialViewContext
(FacesContext context) Create (if needed) and return aPartialViewContext
instance that is initialized using the currentFacesContext
instance.A class that implements this interface uses this method to return an instance of the class being wrapped.
-
Constructor Details
-
PartialViewContextFactory
public PartialViewContextFactory()
-
-
Method Details
-
getWrapped
Description copied from interface:FacesWrapper
A class that implements this interface uses this method to return an instance of the class being wrapped.
- Specified by:
getWrapped
in interfaceFacesWrapper<PartialViewContextFactory>
- See Also:
-
getPartialViewContext
Create (if needed) and return a
PartialViewContext
instance that is initialized using the currentFacesContext
instance.- Parameters:
context
- theFacesContext
for the current request.
-