Skip to main content
summaryrefslogtreecommitdiffstats
blob: a13b8381a4e6582622b27648ca294425d9fddee9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
* generated by Xtext
*/
package org.eclipse.qvtd.xtext.qvtcorebase.parser.antlr;

import java.io.InputStream;
import org.eclipse.xtext.parser.antlr.IAntlrTokenFileProvider;

public class QVTcoreBaseAntlrTokenFileProvider implements IAntlrTokenFileProvider {
	
	public InputStream getAntlrTokenFile() {
		ClassLoader classLoader = getClass().getClassLoader();
    	return classLoader.getResourceAsStream("org/eclipse/qvtd/xtext/qvtcorebase/parser/antlr/internal/InternalQVTcoreBase.tokens");
	}
}

Back to the top