The Attributes
class is responsible for managing the collection of attributes associated with an element. It provides methods for interacting with the attributes of an element, allowing for the retrieval, modification, and removal of key-value pairs in the form of attribute names and their corresponding values.
The Attributes
class extends AbstractCollection and stores attributes as key-value pairs, where the key represents the attribute's name, and the value represents its value. It is used by ElementNode
to manage the attributes of elements and offers methods for accessing individual attributes.
Declaration
class Attributes extends AbstractCollection