All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.topologi.diffx.event.TextEvent Maven / Gradle / Ivy

Go to download

docx4j is a library which helps you to work with the Office Open XML file format as used in docx documents, pptx presentations, and xlsx spreadsheets.

There is a newer version: 6.1.2
Show newest version
package com.topologi.diffx.event;


/**
 * An interface for any data that comes from a text node.
 * 
 * @author Christophe Lauret
 * @version 21 December 2004
 */
public interface TextEvent extends DiffXEvent {

  /**
   * 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. */ String getCharacters(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy