com.topologi.diffx.event
Interface AttributeEvent

All Superinterfaces:
DiffXEvent, XMLFormattable, XMLWritable
All Known Implementing Classes:
AttributeEventImpl, AttributeEventNSImpl

public interface AttributeEvent
extends DiffXEvent

An event for attributes.

Version:
3 April 2005
Author:
Christophe Lauret

Method Summary
 String getName()
          Returns the local name of the attribute.
 String getURI()
          Returns the namespace URI the attribute belongs to.
 String getValue()
          Returns the value of the attribute.
 
Methods inherited from interface com.topologi.diffx.event.DiffXEvent
equals, getWeight, setWeight
 
Methods inherited from interface com.topologi.diffx.xml.XMLWritable
toXML
 
Methods inherited from interface com.topologi.diffx.xml.XMLFormattable
toXML, toXML
 

Method Detail

getName

String getName()
Returns the local name of the attribute.

This method should never return null.

Returns:
The local name of the attribute.

getValue

String getValue()
Returns the value of the attribute.

This method should never return null.

Returns:
The value of the attribute.

getURI

String getURI()
Returns the namespace URI the attribute belongs to.

This method should return null if the implementation is not namespace aware or if the attribute is not bound to any namespace.

Returns:
The namespace URI the attribute belongs to or null.