Package org.htmlunit.html
Interface HtmlAttributeChangeListener
-
- All Superinterfaces:
java.io.Serializable
public interface HtmlAttributeChangeListener extends java.io.SerializableImplementations of this interface receive notifications of changes to the attribute list on the HtmlElement.- See Also:
HtmlAttributeChangeEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidattributeAdded(HtmlAttributeChangeEvent event)Notification that a new attribute was added to the HtmlElement.voidattributeRemoved(HtmlAttributeChangeEvent event)Notification that an existing attribute has been removed from the HtmlElement.voidattributeReplaced(HtmlAttributeChangeEvent event)Notification that an attribute on the HtmlElement has been replaced.
-
-
-
Method Detail
-
attributeAdded
void attributeAdded(HtmlAttributeChangeEvent event)
Notification that a new attribute was added to the HtmlElement. Called after the attribute is added.- Parameters:
event- the attribute change event
-
attributeRemoved
void attributeRemoved(HtmlAttributeChangeEvent event)
Notification that an existing attribute has been removed from the HtmlElement. Called after the attribute is removed.- Parameters:
event- the attribute change event
-
attributeReplaced
void attributeReplaced(HtmlAttributeChangeEvent event)
Notification that an attribute on the HtmlElement has been replaced. Called after the attribute is replaced.- Parameters:
event- the attribute change event
-
-