com.googlecode.jslint4java.ant
Interface ResultFormatter

All Known Implementing Classes:
PlainResultFormatter, XmlResultFormatter

public interface ResultFormatter

Output all issues found somewhere. The calling sequence is:

Version:
$Id$
Author:
dom

Method Summary
 void begin()
          Called at the start of JSLintTask execution.
 void end()
          Called at the end of JSLintTask execution.
 void output(java.lang.String name, java.util.List<Issue> issues)
          Called for each file that is checked by JSLintTask.
 void setOut(java.io.OutputStream os)
          Called during initialization.
 

Method Detail

begin

void begin()
Called at the start of JSLintTask execution.


end

void end()
Called at the end of JSLintTask execution.


output

void output(java.lang.String name,
            java.util.List<Issue> issues)
Called for each file that is checked by JSLintTask.

Parameters:
name - The file just examined.
issues - A list of issues fond with this file. May be empty.

setOut

void setOut(java.io.OutputStream os)
Called during initialization.

Parameters:
os -


Copyright © 2007-2009. All Rights Reserved.