Package javax.faces.context
Class PartialViewContextFactory
- java.lang.Object
-
- javax.faces.context.PartialViewContextFactory
-
- All Implemented Interfaces:
FacesWrapper<PartialViewContextFactory>
public abstract class PartialViewContextFactory extends java.lang.Object implements FacesWrapper<PartialViewContextFactory>
PartialViewContextFactory is a factory object that creates (if needed) and returns new
PartialViewContextinstances.There must be one
PartialViewContextFactoryinstance 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 Constructor Description PartialViewContextFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract PartialViewContextgetPartialViewContext(FacesContext context)Create (if needed) and return aPartialViewContextinstance that is initialized using the currentFacesContextinstance.PartialViewContextFactorygetWrapped()A class that implements this interface uses this method to return an instance of the class being wrapped.
-
-
-
Method Detail
-
getWrapped
public PartialViewContextFactory 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:
FacesWrapper.getWrapped()
-
getPartialViewContext
public abstract PartialViewContext getPartialViewContext(FacesContext context)
Create (if needed) and return a
PartialViewContextinstance that is initialized using the currentFacesContextinstance.- Parameters:
context- theFacesContextfor the current request.
-
-