Package org.htmlunit.html
Interface HtmlAttributeChangeListener
- All Superinterfaces:
Serializable
Implementations of this interface receive notifications of changes to the attribute
list on the HtmlElement.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidNotification that a new attribute was added to the HtmlElement.voidNotification that an existing attribute has been removed from the HtmlElement.voidNotification that an attribute on the HtmlElement has been replaced.
-
Method Details
-
attributeAdded
Notification that a new attribute was added to the HtmlElement. Called after the attribute is added.- Parameters:
event- the attribute change event
-
attributeRemoved
Notification that an existing attribute has been removed from the HtmlElement. Called after the attribute is removed.- Parameters:
event- the attribute change event
-
attributeReplaced
Notification that an attribute on the HtmlElement has been replaced. Called after the attribute is replaced.- Parameters:
event- the attribute change event
-