Class CompositeTagDecorator
- java.lang.Object
- 
- org.apache.myfaces.view.facelets.tag.CompositeTagDecorator
 
- 
- All Implemented Interfaces:
- TagDecorator
 
 public final class CompositeTagDecorator extends Object implements TagDecorator A TagDecorator that is composed of 1 or more TagDecorator instances. It uses the chain of responsibility pattern to stop processing if any of the TagDecorators return a value other than null.- Version:
- $Id$
- Author:
- Jacob Hookom
 
- 
- 
Constructor SummaryConstructors Constructor Description CompositeTagDecorator(TagDecorator[] decorators)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Tagdecorate(Tag tag)Uses the chain of responsibility pattern to stop processing if any of the TagDecorators return a value other than null.
 
- 
- 
- 
Constructor Detail- 
CompositeTagDecoratorpublic CompositeTagDecorator(TagDecorator[] decorators) 
 
- 
 - 
Method Detail- 
decoratepublic Tag decorate(Tag tag) Uses the chain of responsibility pattern to stop processing if any of the TagDecorators return a value other than null.- Specified by:
- decoratein interface- TagDecorator
- See Also:
- TagDecorator.decorate(jakarta.faces.view.facelets.Tag)
 
 
- 
 
-