com.googlecode.jslint4java.maven
Interface ReportWriter

All Known Implementing Classes:
MultiReportWriter, ReportWriterImpl

public interface ReportWriter

Write a report formatted by a JSLintResultFormatter to somewhere. You should call the methods in this order:

  1. open()
  2. report(JSLintResult)
  3. close()

If you don't call close(), you won't see any output.


Method Summary
 void close()
          End the report.
 void open()
          Begin the report.
 void report(JSLintResult result)
          Report the result of a run.
 

Method Detail

close

void close()
End the report.


open

void open()
Begin the report. Call immediately after construction.


report

void report(JSLintResult result)
Report the result of a run.



Copyright © 2007-2012. All Rights Reserved.