|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectcom.topologi.diffx.event.impl.DiffXEventBase
com.topologi.diffx.event.impl.CloseElementEventImpl
A basic implementation of the close element event.
It corresponds to the startElement SAX event.
This implementation is not namespace aware.
| Constructor Summary | |
CloseElementEventImpl(OpenElementEvent event)
Creates a new close element event that corresponds to the given open element. |
|
CloseElementEventImpl(String name)
Creates a new close element event. |
|
| Method Summary | |
boolean |
equals(DiffXEvent e)
Returns true if the event is a close element
and has the same name. |
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 element. |
OpenElementEvent |
getOpenElement()
Returns the corresponding event element. |
String |
getURI()
Always return the empty URI. |
int |
getWeight()
Returns the weight of this event. |
int |
hashCode()
|
boolean |
match(OpenElementEvent event)
Returns true if the open element has the same name. |
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 CloseElementEventImpl(String name)
throws NullPointerException
name - The local name of the element
NullPointerException - If the name is null.
public CloseElementEventImpl(OpenElementEvent event)
throws NullPointerException
event - The corresponding open element.
NullPointerException - If the name is null.| Method Detail |
public String getName()
CloseElementEvent
getName in interface CloseElementEventpublic String getURI()
getURI in interface CloseElementEventConstants.DEFAULT_URIpublic OpenElementEvent getOpenElement()
CloseElementEvent
getOpenElement in interface CloseElementEventCloseElementEvent.getOpenElement()public boolean match(OpenElementEvent event)
true if the open element has the same name.
match in interface CloseElementEventevent - The open element event to test.
true if there is a match;
false otherwise.CloseElementEvent.match(com.topologi.diffx.event.OpenElementEvent)public int hashCode()
Object.hashCode()public boolean equals(DiffXEvent e)
true if the event is a close element
and has the same name.
equals in interface DiffXEvente - The event to compare with this event.
true if this event is equal to the specified event;
false otherwise.DiffXEvent.equals(DiffXEvent)public String toString()
Object.toString()
public void toXML(XMLWriter xml)
throws IOException
XMLWritableXMLWriter.
toXML in interface XMLWritablexml - The XMLWriter to use.
IOException - IF an I/O exception occurs whilst writing.XMLWritable.toXML(com.topologi.diffx.xml.XMLWriter)
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.XMLWritable.toXML(com.topologi.diffx.xml.XMLWriter)public final boolean equals(Object o)
DiffXEvent.equals(DiffXEvent) method if the specified
object if not null and is an instance of DiffXEvent.
o - The object to compare.
true if the specified object is equal;
false otherwise.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 XMLFormattableXMLFormattable.toXML()public int getWeight()
DiffXEventThe default weight should be 1.
getWeight in interface DiffXEventDiffXEvent.getWeight()public 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.DiffXEvent.setWeight(int)
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||