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

gate.compound.CompoundDocumentListener Maven / Gradle / Ivy

There is a newer version: 8.6.1
Show newest version
package gate.compound;

/**
 * Programs wishing to listen to the events of document being added and removed
 * to the compound document should implement this listener.
 * 
 * @author niraj
 * 
 */
public interface CompoundDocumentListener {
	/**
	 * This method is called whenever a document is added to the compound document.
	 * @param event
	 */
	public void documentAdded(CompoundDocumentEvent event);

	/**
	 * This method is called whenever a document is removed from the compound document.
	 * @param event
	 */
	public void documentRemoved(CompoundDocumentEvent event);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy