public interface IOutputter
Modifier and Type | Interface and Description |
---|---|
static interface |
IOutputter.Context
Holds information which controls how to format a report.
|
Modifier and Type | Method and Description |
---|---|
void |
embedd(IOutputter.Context context,
IResult result,
Writer writer)
Add this result to the output.
|
void |
process(IOutputter.Context context,
IResult result,
Writer writer)
Write this result to the output, presuming the writer has just been opened.
|
void embedd(IOutputter.Context context, IResult result, Writer writer) throws IOException
context
- the context, which controls how the output should be doneresult
- the result to be formattedwriter
- where the formatted output should goIOException
void process(IOutputter.Context context, IResult result, Writer writer) throws IOException
context
- the context, which controls how the output should be doneresult
- the result to be formattedwriter
- where the formatted output should goIOException