public final class WordEvent extends CharactersEventBase implements TextEvent
Constructor and Description |
---|
WordEvent(CharSequence w)
Creates a new word event.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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.
|
equals, getCharacters, hashCode, toXML, toXML
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
getCharacters
equals, getWeight, setWeight
toXML
toXML, toXML
public WordEvent(CharSequence w) throws NullPointerException
w
- The word as a string.NullPointerException
- If the given String 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-2019. All Rights Reserved.