Package org.eclipse.mat.report
Interface IOutputter
- All Known Implementing Classes:
CSVOutputter
,HtmlOutputter
,HtmlPieChartRenderer
,OutputterBase
,TextOutputter
public interface IOutputter
Converts a result to a report.
See extension point org.eclipse.mat.report.renderer
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Holds information which controls how to format a report. -
Method Summary
Modifier and TypeMethodDescriptionvoid
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.
-
Method Details
-
embedd
Add this result to the output.- Parameters:
context
- the context, which controls how the output should be doneresult
- the result to be formattedwriter
- where the formatted output should go- Throws:
IOException
- if something went wrong writing this result
-
process
Write this result to the output, presuming the writer has just been opened.- Parameters:
context
- the context, which controls how the output should be doneresult
- the result to be formattedwriter
- where the formatted output should go- Throws:
IOException
- if something went wrong writing this result
-