hudson.plugins.warnings.parser
Interface WarningsParser

All Known Implementing Classes:
AntEclipseParser, AntJavacParser, GccParser, HpiCompileParser, InvalidsParser, JavacParser, JavaDocParser, MavenParser, MsBuildParser, RegexpParser, SunCParser

public interface WarningsParser

Parses an input stream for compiler warnings and returns the found annotations.

Author:
Ulli Hafner

Method Summary
 java.util.Collection<FileAnnotation> parse(java.io.InputStream inputStream)
          Parses an input stream for compiler warnings and returns the found annotations.
 

Method Detail

parse

java.util.Collection<FileAnnotation> parse(java.io.InputStream inputStream)
                                           throws java.io.IOException
Parses an input stream for compiler warnings and returns the found annotations. Note that the implementor of this method is not allowed to close the specified input stream.

Parameters:
inputStream - the stream to parse
Returns:
the collection of annotations
Throws:
java.io.IOException - Signals that an I/O exception has occurred.


Copyright © 2008. All Rights Reserved.