Package com.topologi.diffx.load
Interface Recorder
- All Known Subinterfaces:
XMLRecorder
- All Known Implementing Classes:
DOMRecorder,SAXRecorder,TextRecorder
public interface Recorder
A class implementing this interface must be able to produce a sequence of event
from a specified input.
- Version:
- 8 March 2005
-
Method Summary
Modifier and TypeMethodDescriptionRuns the recorder on the specified file.Runs the recorder on the specified string.
-
Method Details
-
process
Runs the recorder on the specified file.- Parameters:
file- The file to process.- Returns:
- The recorded sequence of events.
- Throws:
LoadingException- If thrown while parsing.IOException- Should I/O error occur.
-
process
Runs the recorder on the specified string.- Parameters:
xml- The string to process.- Returns:
- The recorded sequence of events.
- Throws:
LoadingException- If thrown while parsing.IOException- Should I/O error occur.
-