Class BehaviorHandler
- All Implemented Interfaces:
AttachedObjectHandler, BehaviorHolderAttachedObjectHandler, FaceletHandler
public class BehaviorHandler
extends FaceletsAttachedObjectHandler
implements BehaviorHolderAttachedObjectHandler
The FaceletHandler that corresponds to attached objects that represent an instance of
ClientBehavior that must be added to the parent component, which must
implement ClientBehaviorHolder, with a call to
ClientBehaviorHolder.addClientBehavior(String, ClientBehavior). The current specification defines
one Facelet element for this sort of attached object, <f:ajax>.
-
Field Summary
Fields inherited from class DelegatingMetaTagHandler
delegateFactoryModifier and TypeFieldDescriptionprotected TagHandlerDelegateFactoryClass that defines methods relating to helping tag handler instances.Fields inherited from class TagHandler
nextHandler, tag, tagIdModifier and TypeFieldDescriptionprotected final FaceletHandlerA reference to theFaceletHandlerthat represents the first nested child of thisTagHandlerinstance.protected final TagA reference to theTaginstance corresponding to thisTagHandlerinstance.protected final StringSeeTagConfig.getTagId(). -
Constructor Summary
ConstructorsConstructorDescriptionBehaviorHandler(BehaviorConfig config) Constructs the handler using the Id from the config. -
Method Summary
Modifier and TypeMethodDescriptionReturns the behavior Id obtained from the passed-in config.getEvent()Returns the event that is set as the "event" attribute on the behavior tag.Return the client event name to which this behavior applies.protected TagHandlerDelegateGet the tag handler delegate.Methods inherited from class FaceletsAttachedObjectHandler
applyAttachedObject, getAttachedObjectHandlerHelper, getForModifier and TypeMethodDescriptionfinal voidapplyAttachedObject(FacesContext ctx, UIComponent parent) Take the necessary actions to apply the attached object represented by the tag for the concrete subclass of this class to the argumentparent.protected final AttachedObjectHandlerReturn the underlying handler for this tag handler instance.final StringgetFor()Return the value of the "for" attribute.Methods inherited from class DelegatingMetaTagHandler
apply, applyNextHandler, createMetaRuleset, getBinding, getTag, getTagAttribute, getTagId, isDisabled, setAttributesModifier and TypeMethodDescriptionvoidapply(FaceletContext ctx, UIComponent parent) The default implementation simply calls through toTagHandlerDelegate.apply(FaceletContext, UIComponent).voidInvoke theapply()method on this instance'sTagHandler.nextHandler.protected MetaRulesetcreateMetaRuleset(Class type) The default implementation simply calls through toTagHandlerDelegate.createMetaRuleset(Class)and returns the result.Return the "binding" attribute.getTag()Return a reference to theTaginstance corresponding to thisTagHandlerinstance.getTagAttribute(String localName) Return the named attribute from the tag attributes.getTagId()Return the tag id from theTagConfigused to instantiate this handler.booleanisDisabled(FaceletContext ctx) Returns the value of the "disabled" attribute.voidsetAttributes(FaceletContext ctx, Object instance) Invoking/extending this method will cause the results of the created MetaRuleset to auto-wire state to the passed instance.Methods inherited from class TagHandler
getAttribute, getRequiredAttribute, toStringModifier and TypeMethodDescriptionprotected final TagAttributegetAttribute(String localName) Utility method for fetching the appropriate TagAttributeprotected final TagAttributegetRequiredAttribute(String localName) Utility method for fetching a required TagAttributetoString()
-
Constructor Details
-
BehaviorHandler
Constructs the handler using the Id from the config.- Parameters:
config- config instance to get the behavior Id from.
-
-
Method Details
-
getEventName
Description copied from interface:BehaviorHolderAttachedObjectHandlerReturn the client event name to which this behavior applies.
- Specified by:
getEventNamein interfaceBehaviorHolderAttachedObjectHandler- Returns:
- the client event name for this behavior
-
getTagHandlerDelegate
Description copied from class:DelegatingMetaTagHandlerGet the tag handler delegate.
Code that extends from DelegatingMetaTagHandler (directly or indirectly, as through extending ComponentHandler) must take care to decorate, not replace, the TagHandlerDelegate instance returned by this method. Failure to do so may produce unexpected results.
- Specified by:
getTagHandlerDelegatein classDelegatingMetaTagHandler- Returns:
- the tag handler delegate.
-
getBehaviorId
Returns the behavior Id obtained from the passed-in config.- Returns:
- the behavior Id
-
getEvent
Returns the event that is set as the "event" attribute on the behavior tag.- Returns:
- the event tag attribute
-