Package jakarta.faces.view.facelets
Class Tag
- java.lang.Object
- 
- jakarta.faces.view.facelets.Tag
 
- 
 public final class Tag extends Object Representation of a Tag in the Facelet definition
- 
- 
Constructor SummaryConstructors Constructor Description Tag(Tag orig, TagAttributes attributes)Tag(Location location, String namespace, String localName, String qName, TagAttributes attributes)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description TagAttributesgetAttributes()All TagAttributes specifiedStringgetLocalName()Local name of the tag <my:tag /> would be "tag"LocationgetLocation()Location of the Tag in the Facelet fileStringgetNamespace()The resolved Namespace for this tagStringgetQName()Get the qualified name for this tag <my:tag > would be "my:tag"StringtoString()
 
- 
- 
- 
Constructor Detail- 
Tagpublic Tag(Location location, String namespace, String localName, String qName, TagAttributes attributes) 
 - 
Tagpublic Tag(Tag orig, TagAttributes attributes) 
 
- 
 - 
Method Detail- 
getAttributespublic TagAttributes getAttributes() All TagAttributes specified- Returns:
- all TagAttributes specified
 
 - 
getLocalNamepublic String getLocalName() Local name of the tag <my:tag /> would be "tag"- Returns:
- local name of the tag
 
 - 
getLocationpublic Location getLocation() Location of the Tag in the Facelet file- Returns:
- location of the Tag in the Facelet file
 
 - 
getNamespacepublic String getNamespace() The resolved Namespace for this tag- Returns:
- the resolved namespace for this tag
 
 - 
getQNamepublic String getQName() Get the qualified name for this tag <my:tag > would be "my:tag"- Returns:
- qualified name of the tag
 
 
- 
 
-