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

org.daisy.common.stax.EventProcessor Maven / Gradle / Ivy

There is a newer version: 6.1.0
Show newest version
package org.daisy.common.stax;

import javax.xml.stream.XMLStreamException;
import javax.xml.stream.events.XMLEvent;


/**
 * Stax event processor.
 */
public interface EventProcessor {

	/**
	 * Process the event
	 *
	 * @param event the event
	 * @throws XMLStreamException the xML stream exception
	 */
	void process(XMLEvent event) throws XMLStreamException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy