com.gargoylesoftware.htmlunit.html
Class HtmlAttributeChangeEvent
java.lang.Object
java.util.EventObject
com.gargoylesoftware.htmlunit.html.HtmlAttributeChangeEvent
- All Implemented Interfaces:
- Serializable
public class HtmlAttributeChangeEvent
- extends EventObject
This is the event class for notifications about changes to the attributes of the
HtmlElement.
- Version:
- $Revision: 2132 $
- Author:
- Ahmed Ashour
- See Also:
HtmlAttributeChangeListener
,
Serialized Form
HtmlAttributeChangeEvent
public HtmlAttributeChangeEvent(HtmlElement element,
String name,
String value)
- Constructs a new AttributeEvent from the given element
for the given attribute name and attribute value.
- Parameters:
element
- the HtmlElement that is sending the event.name
- the name of the attribute that changed on the element.value
- the value of the attribute that has been added, removed, or replaced.
getHtmlElement
public HtmlElement getHtmlElement()
- Return the HtmlElement that changed.
- Returns:
- the HtmlElement that sent the event.
getName
public String getName()
- Return the name of the attribute that changed on the element.
- Returns:
- the name of the attribute that changed on the element.
getValue
public String getValue()
- Returns the value of the attribute that has been added, removed, or replaced.
If the attribute was added, this is the value of the attribute.
If the attribute was removed, this is the value of the removed attribute.
If the attribute was replaced, this is the old value of the attribute.
- Returns:
- the value of the attribute that has been added, removed, or replaced.
Copyright © 2002-2010 Gargoyle Software Inc.. All Rights Reserved.