Class TagAttributesImpl
- java.lang.Object
- 
- jakarta.faces.view.facelets.TagAttributes
- 
- org.apache.myfaces.view.facelets.tag.TagAttributesImpl
 
 
- 
 public final class TagAttributesImpl extends TagAttributes A set of TagAttributes, usually representing all attributes on a Tag. See org.apache.myfaces.view.facelets.tag.Tag See org.apache.myfaces.view.facelets.tag.TagAttributeImpl- Version:
- $Id$
- Author:
- Jacob Hookom
 
- 
- 
Constructor SummaryConstructors Constructor Description TagAttributesImpl(TagAttribute[] attributes)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description TagAttributeget(String localName)Using no namespace, find the TagAttribute See #get(String, String)TagAttributeget(String ns, String localName)Find a TagAttribute that matches the passed namespace and local name.TagAttribute[]getAll()Return an array of all TagAttributes in this setTagAttribute[]getAll(String namespace)Get all TagAttributes for the passed namespaceString[]getNamespaces()A list of Namespaces found in this setStringtoString()- 
Methods inherited from class jakarta.faces.view.facelets.TagAttributesgetTag, setTag
 
- 
 
- 
- 
- 
Constructor Detail- 
TagAttributesImplpublic TagAttributesImpl(TagAttribute[] attributes) 
 
- 
 - 
Method Detail- 
getAllpublic TagAttribute[] getAll() Return an array of all TagAttributes in this set- Specified by:
- getAllin class- TagAttributes
- Returns:
- a non-null array of TagAttributes
 
 - 
getpublic TagAttribute get(String localName) Using no namespace, find the TagAttribute See #get(String, String)- Specified by:
- getin class- TagAttributes
- Parameters:
- localName- tag attribute name
- Returns:
- the TagAttribute found, otherwise null
 
 - 
getpublic TagAttribute get(String ns, String localName) Find a TagAttribute that matches the passed namespace and local name.- Specified by:
- getin class- TagAttributes
- Parameters:
- ns- namespace of the desired attribute
- localName- local name of the attribute
- Returns:
- a TagAttribute found, otherwise null
 
 - 
getAllpublic TagAttribute[] getAll(String namespace) Get all TagAttributes for the passed namespace- Specified by:
- getAllin class- TagAttributes
- Parameters:
- namespace- namespace to search
- Returns:
- a non-null array of TagAttributes
 
 - 
getNamespacespublic String[] getNamespaces() A list of Namespaces found in this set- Specified by:
- getNamespacesin class- TagAttributes
- Returns:
- a list of Namespaces found in this set
 
 
- 
 
-