Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.gmt.tcs.builder/src/org/eclipse/gmt/tcs/builder/ParserGenerator.java')
-rw-r--r--plugins/org.eclipse.gmt.tcs.builder/src/org/eclipse/gmt/tcs/builder/ParserGenerator.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/org.eclipse.gmt.tcs.builder/src/org/eclipse/gmt/tcs/builder/ParserGenerator.java b/plugins/org.eclipse.gmt.tcs.builder/src/org/eclipse/gmt/tcs/builder/ParserGenerator.java
new file mode 100644
index 0000000..7f87d76
--- /dev/null
+++ b/plugins/org.eclipse.gmt.tcs.builder/src/org/eclipse/gmt/tcs/builder/ParserGenerator.java
@@ -0,0 +1,23 @@
+/**
+ * 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: ParserGenerator.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 ParserGenerator {
+
+ public void generate(String antlrFile, String javaFilesPath, ParserGeneratorErrorListener errorListener);
+}

Back to the top