Skip to main content
summaryrefslogtreecommitdiffstats
blob: b88a2cb174f8e8053fad077543abb8d5830bd846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.eclipse.cdt.core;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */

public interface IErrorParser {
	/**
	 * Finds error or warnings on the given line
	 */
	boolean processLine(String line, ErrorParserManager eoParser);

}

Back to the top