public final class CloseElementEventNSImpl extends Object implements CloseElementEvent
startElement SAX event.| Constructor and Description |
|---|
CloseElementEventNSImpl(OpenElementEvent event)
Creates a new close element event from the corresponding open element event.
|
CloseElementEventNSImpl(String name)
Creates a new close element event on the default namespace URI.
|
CloseElementEventNSImpl(String uri,
String name)
Creates a new close element event.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(DiffXEvent e)
Returns
true if the event is a close element 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 element.
|
OpenElementEvent |
getOpenElement()
Returns the corresponding event element.
|
String |
getURI()
Returns the namespace URI the element belongs to.
|
int |
getWeight()
Returns the weight of this event.
|
int |
hashCode() |
boolean |
match(OpenElementEvent event)
Indicates whether the specified open element event matches this close
element event.
|
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. |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitgetWeight, setWeighttoXMLpublic CloseElementEventNSImpl(String name) throws NullPointerException
name - The local name of the elementNullPointerException - If the name is null.public CloseElementEventNSImpl(String uri, String name) throws NullPointerException
uri - The namespace URI of the elementname - The local name of the elementNullPointerException - if any of the argument is null.public CloseElementEventNSImpl(OpenElementEvent event) throws NullPointerException
event - The corresponding open element event.NullPointerException - If the name is null.public String getName()
CloseElementEventgetName in interface CloseElementEventpublic String getURI()
CloseElementEventThis method should return null if the implementation
is not namespace aware.
getURI in interface CloseElementEventpublic OpenElementEvent getOpenElement()
CloseElementEventgetOpenElement in interface CloseElementEventpublic boolean match(OpenElementEvent event)
CloseElementEventThis method first checks whether the open element event is the same as
event returned by the CloseElementEvent.getOpenElement() method, if not it simply
compares the name of the element and the namespace URI it belongs to.
match in interface CloseElementEventevent - The open element event to test.true if there is a match;
false otherwise.public int hashCode()
public boolean equals(DiffXEvent e)
true if the event is a close element 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 void toXML(XMLWriter xml) throws IOException
XMLWritableXMLWriter.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.