Uses of Class
org.htmlunit.html.HtmlAttributeChangeEvent
-
Packages that use HtmlAttributeChangeEvent Package Description org.htmlunit.html Classes specific to HTML pages, particularly theHtmlPage
which represents an HTML document and provides access to its content. -
-
Uses of HtmlAttributeChangeEvent in org.htmlunit.html
Methods in org.htmlunit.html with parameters of type HtmlAttributeChangeEvent Modifier and Type Method Description void
HtmlAttributeChangeListener. attributeAdded(HtmlAttributeChangeEvent event)
Notification that a new attribute was added to the HtmlElement.void
HtmlAttributeChangeListener. attributeRemoved(HtmlAttributeChangeEvent event)
Notification that an existing attribute has been removed from the HtmlElement.void
HtmlAttributeChangeListener. attributeReplaced(HtmlAttributeChangeEvent event)
Notification that an attribute on the HtmlElement has been replaced.protected void
HtmlElement. fireHtmlAttributeAdded(HtmlAttributeChangeEvent event)
Support for reporting HTML attribute changes.protected void
HtmlElement. fireHtmlAttributeRemoved(HtmlAttributeChangeEvent event)
Support for reporting HTML attribute changes.protected void
HtmlElement. fireHtmlAttributeReplaced(HtmlAttributeChangeEvent event)
Support for reporting HTML attribute changes.protected static void
HtmlElement. notifyAttributeChangeListeners(HtmlAttributeChangeEvent event, HtmlElement element, java.lang.String oldAttributeValue, boolean notifyMutationObservers)
Recursively notifies allHtmlAttributeChangeListener
s.
-