Package org.eclipse.cdt.core
Interface IErrorParser
-
- All Known Subinterfaces:
IErrorParser2,IErrorParser3,IErrorParserNamed
- All Known Implementing Classes:
AbstractErrorParser,ErrorParserNamedWrapper,FixitErrorParser,RegexErrorParser
public interface IErrorParserInterface for error parser to parse build output to produce Errors, Warnings or Infos in Problems View.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanprocessLine(java.lang.String line, ErrorParserManager eoParser)Finds error or warnings on the given line
-
-
-
Method Detail
-
processLine
boolean processLine(java.lang.String line, ErrorParserManager eoParser)Finds error or warnings on the given line- Parameters:
line- - line to processeoParser- -ErrorParserManager- Returns:
trueif the parser found a problem reported in output. More accurately,truewill consume the line (prevent other parsers from seeing it) andfalsewon't (the line will be handed to the next parser).
-
-