com.topologi.diffx.event.impl.IgnorableSpaceEvent Maven / Gradle / Ivy
Show all versions of docx4j Show documentation
/*
* This file is part of the DiffX library.
*
* For licensing information please see the file license.txt included in the release.
* A copy of this licence can also be found at
* http://www.opensource.org/licenses/artistic-license-2.0.php
*/
package com.topologi.diffx.event.impl;
import java.io.IOException;
import com.topologi.diffx.event.DiffXEvent;
import com.topologi.diffx.event.TextEvent;
import com.topologi.diffx.xml.XMLWriter;
/**
* A particular type of event reserved for ignored white spaces.
*
*
* This class can be used to ignore whitespaces for processing but preserve them for formatting.
* This event keeps the exact formatting of the white space henceby preserving it, but will consider
* any instances of this class to be equal regardless of their actual formatting so that the
* algorithm ignores the differences.
*
* @author Christophe Lauret
* @version 28 March 2010
*/
public final class IgnorableSpaceEvent implements TextEvent {
/**
* The characters for this event.
*/
private final String characters;
/**
* Creates a new ignorable white space event.
*
* @param seq The char sequence.
*
* @throws NullPointerException If the given String is null
.
*/
public IgnorableSpaceEvent(CharSequence seq) throws NullPointerException {
if (seq == null)
throw new NullPointerException("The characters cannot be null, use \"\"");
this.characters = seq.toString();
}
/**
* Returns "ignorable-space".
*
* {@inheritDoc}
*/
@Override
public String toString() {
return "ignorable-space";
}
/**
* Always returns the same value.
*
* {@inheritDoc}
*/
@Override
public int hashCode() {
return 71;
}
/**
* Returns true
if the event is an ignorable white space, regardless of the
* characters that it matches.
*
* @param o The event to compare with this event.
*
* @return true
if considered equal;
* false
otherwise.
*/
@Override
public boolean equals(Object o) {
return o.getClass() == this.getClass();
}
/**
* Returns true
if the event is an ignorable white space, regardless of the
* characters that it matches.
*
* @param e The event to compare with this event.
*
* @return true
if considered equal;
* false
otherwise.
*/
@Override
public boolean equals(DiffXEvent e) {
if (this == e)
return true;
if (e.getClass() != this.getClass())
return false;
// always return true
return true;
}
/**
* Returns the characters that this event represents.
*
*
* Note: this method will return the characters as used by Java (ie. Unicode), they may not be
* suitable for writing to an XML string.
*
* @return The characters that this event represents.
*/
@Override
public String getCharacters() {
return this.characters;
}
@Override
public void toXML(XMLWriter xml) throws IOException {
// we don't need to parse the whitespace characters.
xml.writeXML(this.characters);
}
@Override
public String toXML() {
return this.characters;
}
@Override
public StringBuffer toXML(StringBuffer xml) throws NullPointerException {
xml.append(this.characters);
return xml;
}
@Override
public int getWeight() {
return 1;
}
/**
* Ignored.
*
* {@inheritDoc}
*/
@Override
public void setWeight(int weight) {
}
}