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

io.codemodder.XMLEventHandler Maven / Gradle / Ivy

There is a newer version: 0.97.9
Show newest version
package io.codemodder;

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

/** Type that gets used to modify an XML stream. */
public interface XMLEventHandler {

  /** Perform some action when an {@link XMLEvent} is determined to match a SARIF region. */
  void onRegionMatchingXMLEvent(
      XMLEventReader xmlReader, XMLEventWriter xmlWriter, XMLEvent incomingEvent)
      throws XMLStreamException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy