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

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

public class ConfigAntlrTokenFileProvider implements IAntlrTokenFileProvider {
	
	public InputStream getAntlrTokenFile() {
		ClassLoader classLoader = getClass().getClassLoader();
    	return classLoader.getResourceAsStream("org/eclipse/etrice/core/parser/antlr/internal/InternalConfig.tokens");
	}
}

Back to the top