Package org.daisy.dotify.api.engine
Interface FormatterEngine
-
public interface FormatterEngine
Provides a formatter engine. The formatter engine is the outer layer of the formatter, requiring only an input stream and an output stream.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
convert(InputStream input, OutputStream output)
Converts the OBFL in the input stream and writes the result to the output stream.
-
-
-
Method Detail
-
convert
void convert(InputStream input, OutputStream output) throws LayoutEngineException
Converts the OBFL in the input stream and writes the result to the output stream.- Parameters:
input
- the OBFL inputoutput
- the output stream- Throws:
LayoutEngineException
- if the conversion fails
-
-