com.gargoylesoftware.htmlunit.html
Interface HtmlAttributeChangeListener


public interface HtmlAttributeChangeListener

Implementations of this interface receive notifications of changes to the attribute list on the HtmlElement.

Version:
$Revision: 2132 $
Author:
Ahmed Ashour
See Also:
HtmlAttributeChangeEvent

Method Summary
 void attributeAdded(HtmlAttributeChangeEvent event)
          Notification that a new attribute was added to the HtmlElement.
 void attributeRemoved(HtmlAttributeChangeEvent event)
          Notification that an existing attribute has been removed from the HtmlElement.
 void attributeReplaced(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 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 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 event.


Copyright © 2002-2010 Gargoyle Software Inc.. All Rights Reserved.