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

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

public class UmlValueSpecificationAntlrTokenFileProvider implements IAntlrTokenFileProvider {
	
	public InputStream getAntlrTokenFile() {
		ClassLoader classLoader = getClass().getClassLoader();
    	return classLoader.getResourceAsStream("org/eclipse/papyrus/uml/textedit/valuespecification/xtext/parser/antlr/internal/InternalUmlValueSpecification.tokens");
	}
}

Back to the top