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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract PartialViewContextgetPartialViewContext(FacesContext context) Create (if needed) and return aPartialViewContextinstance that is initialized using the currentFacesContextinstance.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:FacesWrapperA class that implements this interface uses this method to return an instance of the class being wrapped.
- Specified by:
getWrappedin interfaceFacesWrapper<PartialViewContextFactory>- See Also:
-
getPartialViewContext
Create (if needed) and return a
PartialViewContextinstance that is initialized using the currentFacesContextinstance.- Parameters:
context- theFacesContextfor the current request.
-