Class AbstractErrorParser
- java.lang.Object
-
- org.eclipse.cdt.core.errorparsers.AbstractErrorParser
-
- All Implemented Interfaces:
IErrorParser
public class AbstractErrorParser extends Object implements IErrorParser
Abstract Error Parser that implements simple line processing using patterns array- Since:
- 5.1
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractErrorParser(ErrorPattern[] patterns)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanprocessLine(String line, ErrorParserManager manager)Finds error or warnings on the given line
-
-
-
Constructor Detail
-
AbstractErrorParser
protected AbstractErrorParser(ErrorPattern[] patterns)
-
-
Method Detail
-
processLine
public boolean processLine(String line, ErrorParserManager manager)
Description copied from interface:IErrorParserFinds error or warnings on the given line- Specified by:
processLinein interfaceIErrorParser- Parameters:
line- - line of the inputmanager- - error parsers manager- Returns:
- true if error parser recognized and accepted line, false otherwise
-
-