|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.topologi.diffx.event.impl.AttributeEventNSImpl
public final class AttributeEventNSImpl
A namespace aware implementation of the attribute event.
| Constructor Summary | |
|---|---|
AttributeEventNSImpl(String name,
String value)
Creates a new attribute event. |
|
AttributeEventNSImpl(String uri,
String name,
String value)
Creates a new attribute event. |
|
| Method Summary | |
|---|---|
boolean |
equals(DiffXEvent e)
Returns true if the event is an attribute event. |
boolean |
equals(Object o)
Invokes the DiffXEvent.equals(DiffXEvent) method if the specified object if not
null and is an instance of DiffXEvent. |
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. |
int |
getWeight()
Returns the weight of this event. |
int |
hashCode()
|
void |
setWeight(int weight)
Sets the weight of this event. |
String |
toString()
|
String |
toXML()
Returns a xml representation of the object of the implementing class. |
StringBuffer |
toXML(StringBuffer xml)
Appends the XML representation of the object of the implementing class. |
void |
toXML(XMLWriter xml)
Writes the XML representation of the implementing instance using the specified XMLWriter. |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface com.topologi.diffx.event.DiffXEvent |
|---|
getWeight, setWeight |
| Methods inherited from interface com.topologi.diffx.xml.XMLFormattable |
|---|
toXML |
| Constructor Detail |
|---|
public AttributeEventNSImpl(String name,
String value)
throws NullPointerException
name - The local name of the attribute.value - The value of the attribute.
NullPointerException - if any of the argument is null.
public AttributeEventNSImpl(String uri,
String name,
String value)
throws NullPointerException
uri - The uri of the attribute.name - The local name of the attribute.value - The value of the attribute.
NullPointerException - if any of the argument is null.| Method Detail |
|---|
public String getName()
This method should never return null.
getName in interface AttributeEventpublic String getURI()
This method should return null if the implementation
is not namespace aware or if the attribute is not bound to any namespace.
getURI in interface AttributeEventnull.public String getValue()
This method should never return null.
getValue in interface AttributeEventpublic int hashCode()
public boolean equals(DiffXEvent e)
true if the event is an attribute event.
equals in interface DiffXEvente - The event to compare with this event.
true if this event is equal to the specified event;
false otherwise.public String toString()
toString in class Object
public void toXML(XMLWriter xml)
throws IOException
XMLWriter.
toXML in interface XMLWritablexml - The XMLWriter to use.
IOException - IF an I/O exception occurs whilst writing.
public StringBuffer toXML(StringBuffer xml)
throws NullPointerException
Implementations must ensure that the returned string buffer is the same object as the specified string buffer.
toXML in interface XMLFormattablexml - The string buffer to which the XML representation is appended to.
NullPointerException - if the specified character sequence is null.public final boolean equals(Object o)
DiffXEvent.equals(DiffXEvent) method if the specified object if not
null and is an instance of DiffXEvent.
equals in class Objecto - The object to compare.
true if the specified object is equal;
false otherwise.public String toXML()
Returns a xml representation of the object of the implementing class.
Most implementation should use the following code to ensure consistent data with the
other toXML method:
return this.toXML(new StringBuffer()).toString();
toXML in interface XMLFormattablepublic int getWeight()
The default weight should be 1.
getWeight in interface DiffXEventpublic void setWeight(int weight)
This method is intended for use by algorithms, optimisers and loaders in order to adjust the importance of an event.
setWeight in interface DiffXEventweight - The weight of this event.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||