Package jakarta.faces.view.facelets
Interface TagConfig
- All Known Subinterfaces:
BehaviorConfig
,ComponentConfig
,ConverterConfig
,ValidatorConfig
- All Known Implementing Classes:
AbstractTagLibrary.ComponentConfigWrapper
public interface TagConfig
Passed to the constructor of TagHandler
subclass, it defines the document definition of the handler we are
instantiating.
- Since:
- 2.0
-
Method Summary
Modifier and Type Method Description FaceletHandler
getNextHandler()
The nextFaceletHandler
(child or children) to be applied.Tag
getTag()
Return theTag
representing this handler.String
getTagId()
A document-unique id, follows the convention "_tagId##"
-
Method Details
-
getTag
Tag getTag()Return the
Tag
representing this handler.- Returns:
- the
Tag
instance
-
getNextHandler
FaceletHandler getNextHandler()The next
FaceletHandler
(child or children) to be applied. This must never benull
.- Returns:
- the next
FaceletHandler
to be applied
-
getTagId
String getTagId()A document-unique id, follows the convention "_tagId##"
- Returns:
- the id of this tag, unique within the current document.
-