Skip to main content
summaryrefslogtreecommitdiffstats
blob: 541ddd0449b245e67ecea1f97ecac43e70b0ab17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * Copyright (c) 2008 INRIA.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     INRIA - initial API and implementation
 *
 * $Id: ParserGeneratorErrorListener.java,v 1.1 2008/06/28 17:15:27 fjouault Exp $
 */
package org.eclipse.gmt.tcs.builder;

/**
 * 
 * @author Frédéric Jouault
 * 
 */
public interface ParserGeneratorErrorListener {

	public void addError(String message, int lineNumber, int charStart, int charEnd);

	public void addInfo(String message, int lineNumber, int charStart, int charEnd);

	public void addWarning(String message, int lineNumber, int charStart, int charEnd);
}

Back to the top