Package jakarta.faces.view.facelets
Interface TagConfig
-
- All Known Subinterfaces:
BehaviorConfig,ComponentConfig,ConverterConfig,ValidatorConfig
public interface TagConfigPassed to the constructor of
TagHandlersubclass, it defines the document definition of the handler we are instantiating.- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FaceletHandlergetNextHandler()The nextFaceletHandler(child or children) to be applied.TaggetTag()Return theTagrepresenting this handler.StringgetTagId()A document-unique id, follows the convention "_tagId##"
-
-
-
Method Detail
-
getTag
Tag getTag()
Return the
Tagrepresenting this handler.- Returns:
- the
Taginstance
-
getNextHandler
FaceletHandler getNextHandler()
The next
FaceletHandler(child or children) to be applied. This must never benull.- Returns:
- the next
FaceletHandlerto be applied
-
getTagId
String getTagId()
A document-unique id, follows the convention "_tagId##"
- Returns:
- the id of this tag, unique within the current document.
-
-