public abstract class TagHandlerDelegateFactory extends Object implements FacesWrapper<TagHandlerDelegateFactory>
Abstract
factory for creating instances of TagHandlerDelegate
.
Constructor and Description |
---|
TagHandlerDelegateFactory() |
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. |
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. A default implementation
is provided that returns null
.
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.Copyright © 2017 JBoss by Red Hat. All rights reserved.