Package javax.faces.view.facelets
Class Tag
java.lang.Object
javax.faces.view.facelets.Tag
The runtime must create an instance of
this class for each element in the Facelets XHTML view. A TagConfig
subinterface instance is responsible for providing an
instance of Tag
to the TagHandler
instance that
is passed the TagConfig
in its constructor.
- Since:
- 2.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturn an object encapsulating theTagAttributes
specified on this element in the view.Return the XML local name of the tag.Return theLocation
of thisTag
instance in the Facelet view.Return the resolved XML Namespace for this tag in the Facelets view.getQName()
Return the XML qualified name for this tag.toString()
-
Constructor Details
-
Tag
public Tag(Location location, String namespace, String localName, String qName, TagAttributes attributes) -
Tag
-
-
Method Details
-
getAttributes
Return an object encapsulating the
TagAttributes
specified on this element in the view. -
getLocalName
Return the XML local name of the tag. For example, <my:tag /> would be "tag".
-
getLocation
Return the
Location
of thisTag
instance in the Facelet view. -
getNamespace
Return the resolved XML Namespace for this tag in the Facelets view.
-
getQName
Return the XML qualified name for this tag. For example, <my:tag /> would be "my:tag".
-
toString
-