Skip to main content
summaryrefslogtreecommitdiffstats
blob: 95850a5400c9fa897c2e38c3007ee5b5ca338c5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package org.eclipse.fx.xtext.statemachine.fx.text;

import org.eclipse.jface.text.TextAttribute;
import org.eclipse.jface.text.rules.RuleBasedScanner;
import org.eclipse.jface.text.rules.Token;

public class StatemachineDocScanner extends RuleBasedScanner {
	public StatemachineDocScanner() {
		setDefaultReturnToken(new Token(new TextAttribute("state_doc_default")));
	}
}

Back to the top