public final class XMLBranchEvent extends Object implements DiffXEvent
A branch of XML data must start and end with the same element.
Implementation note: this class wraps an array of DiffX events and does not give access to this array, so it can be considered immutable.
| Constructor and Description |
|---|
XMLBranchEvent(DiffXEvent[] events)
Creates a new XML branch.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(DiffXEvent e)
Returns
true if the diffX events in the branch are all equal. |
boolean |
equals(Object o)
Invokes the
DiffXEvent.equals(DiffXEvent) method if the specified object if not
null and is an instance of DiffXEvent. |
int |
getWeight()
Returns the weight of this event.
|
int |
hashCode() |
void |
setWeight(int weight)
Sets the weight of this event.
|
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)
Write the DiffX events in order.
|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitgetWeight, setWeighttoXMLpublic XMLBranchEvent(DiffXEvent[] events)
events - The array of events that make up the branch.public int hashCode()
public boolean equals(DiffXEvent e)
true if the diffX events in the branch are all equal.
Indicates whether the specified event is equal to this event.equals in interface DiffXEvente - The event to compare it with thsi one.true if considered equals;
false otherwise.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
XMLFormattableImplementations 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.public String toXML()
XMLFormattableReturns 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()
DiffXEventThe default weight should be 1.
getWeight in interface DiffXEventpublic void setWeight(int weight)
DiffXEventThis 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.Copyright © 2007-2022. All Rights Reserved.