public final class LineEvent extends Object implements TextEvent
Constructor and Description |
---|
LineEvent(CharSequence line,
int lineNumber)
Creates a new line event.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(DiffXEvent e)
Returns
true if the event is a character event and the content is equivalent. |
boolean |
equals(Object o)
Invokes the
DiffXEvent.equals(DiffXEvent) method if the specified object if not
null and is an instance of DiffXEvent . |
String |
getCharacters()
Returns the characters that this event represents.
|
int |
getLineNumber()
Returns the line number.
|
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 . |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
getWeight, setWeight
toXML
public LineEvent(CharSequence line, int lineNumber) throws NullPointerException
line
- The char sequence.lineNumber
- The line number.NullPointerException
- If the given String is null
.public int hashCode()
public boolean equals(DiffXEvent e)
true
if the event is a character event and the content is equivalent.equals
in interface DiffXEvent
e
- The event to compare with this event.true
if considered equal;
false
otherwise.public String getCharacters()
Note: this method will return the characters as used by Java (ie. Unicode), they may not be suitable for writing to an XML string.
getCharacters
in interface TextEvent
public int getLineNumber()
public void toXML(XMLWriter xml) throws IOException
XMLWritable
XMLWriter
.toXML
in interface XMLWritable
xml
- The XMLWriter to use.IOException
- IF an I/O exception occurs whilst writing.public StringBuffer toXML(StringBuffer xml) throws NullPointerException
XMLFormattable
Implementations must ensure that the returned string buffer is the same object as the specified string buffer.
toXML
in interface XMLFormattable
xml
- 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()
XMLFormattable
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 XMLFormattable
public int getWeight()
DiffXEvent
The default weight should be 1.
getWeight
in interface DiffXEvent
public void setWeight(int weight)
DiffXEvent
This method is intended for use by algorithms, optimisers and loaders in order to adjust the importance of an event.
setWeight
in interface DiffXEvent
weight
- The weight of this event.Copyright © 2007-2014. All Rights Reserved.