Package javax.faces.view.facelets
Class TagHandlerDelegateFactory
java.lang.Object
javax.faces.view.facelets.TagHandlerDelegateFactory
- All Implemented Interfaces:
FacesWrapper<TagHandlerDelegateFactory>
public abstract class TagHandlerDelegateFactory
extends Object
implements FacesWrapper<TagHandlerDelegateFactory>
Abstract
factory for creating instances of TagHandlerDelegate
.
- Since:
- 2.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract TagHandlerDelegate
Create and return aTagHandlerDelegate
instance designed for use withBehaviorHandler
.abstract TagHandlerDelegate
Create and return aTagHandlerDelegate
instance designed for use withComponentHandler
.abstract TagHandlerDelegate
Create and return aTagHandlerDelegate
instance designed for use withConverterHandler
.abstract TagHandlerDelegate
Create and return aTagHandlerDelegate
instance designed for use withValidatorHandler
.If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped.
-
Constructor Details
-
TagHandlerDelegateFactory
public TagHandlerDelegateFactory()
-
-
Method Details
-
getWrapped
If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped. A default implementation is provided that returns
null
.- Specified by:
getWrapped
in interfaceFacesWrapper<TagHandlerDelegateFactory>
- Since:
- 2.2
-
createComponentHandlerDelegate
Create and return a
TagHandlerDelegate
instance designed for use withComponentHandler
.- Parameters:
owner
- theComponentHandler
instance being helped by this helper instance.- Since:
- 2.0
-
createValidatorHandlerDelegate
Create and return a
TagHandlerDelegate
instance designed for use withValidatorHandler
.- Parameters:
owner
- theValidatorHandler
instance being helped by this helper instance.- Since:
- 2.0
-
createConverterHandlerDelegate
Create and return a
TagHandlerDelegate
instance designed for use withConverterHandler
.- Parameters:
owner
- theValidatorHandler
instance being helped by this helper instance.- Since:
- 2.0
-
createBehaviorHandlerDelegate
Create and return a
TagHandlerDelegate
instance designed for use withBehaviorHandler
.- Parameters:
owner
- theValidatorHandler
instance being helped by this helper instance.- Since:
- 2.0
-