public abstract class TagHandlerDelegateFactory extends java.lang.Object implements FacesWrapper<TagHandlerDelegateFactory>
Abstract factory for creating instances of
TagHandlerDelegate
.
Usage: extend this class and push the implementation being wrapped to the constructor and use getWrapped()
to
access the instance being wrapped.
Constructor and Description |
---|
TagHandlerDelegateFactory()
Deprecated.
Use the other constructor taking the implementation being wrapped.
|
TagHandlerDelegateFactory(TagHandlerDelegateFactory wrapped)
If this factory has been decorated, the implementation doing the decorating should push the implementation being wrapped to this constructor. |
Modifier and Type | Method and Description |
---|---|
abstract TagHandlerDelegate |
createBehaviorHandlerDelegate(BehaviorHandler owner)
Create and return a |
abstract TagHandlerDelegate |
createComponentHandlerDelegate(ComponentHandler owner)
Create and return a |
abstract TagHandlerDelegate |
createConverterHandlerDelegate(ConverterHandler owner)
Create and return a |
abstract TagHandlerDelegate |
createValidatorHandlerDelegate(ValidatorHandler owner)
Create and return a |
TagHandlerDelegateFactory |
getWrapped()
If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped. |
@Deprecated public TagHandlerDelegateFactory()
public TagHandlerDelegateFactory(TagHandlerDelegateFactory wrapped)
If this factory has been decorated, the implementation doing the decorating should push the implementation being
wrapped to this constructor. The getWrapped()
will then return the implementation being wrapped.
wrapped
- The implementation being wrapped.public TagHandlerDelegateFactory getWrapped()
If this factory has been decorated, the implementation doing the decorating may override this method to provide access to the implementation being wrapped.
getWrapped
in interface FacesWrapper<TagHandlerDelegateFactory>
public abstract TagHandlerDelegate createComponentHandlerDelegate(ComponentHandler owner)
Create and return a TagHandlerDelegate
instance designed for use with ComponentHandler
.
owner
- the ComponentHandler
instance being helped by this helper instance.public abstract TagHandlerDelegate createValidatorHandlerDelegate(ValidatorHandler owner)
Create and return a TagHandlerDelegate
instance designed for use with ValidatorHandler
.
owner
- the ValidatorHandler
instance being helped by this helper instance.public abstract TagHandlerDelegate createConverterHandlerDelegate(ConverterHandler owner)
Create and return a TagHandlerDelegate
instance designed for use with ConverterHandler
.
owner
- the ValidatorHandler
instance being helped by this helper instance.public abstract TagHandlerDelegate createBehaviorHandlerDelegate(BehaviorHandler owner)
Create and return a TagHandlerDelegate
instance designed for use with BehaviorHandler
.
owner
- the ValidatorHandler
instance being helped by this helper instance.