Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2e4d24b7d15bd6158675cdac30bb7682841b48eb (plain) (blame)
1
2
3
4
5
6
7
8
9
package org.eclipse.fx.code.editor.langs.codegen.fx.java;

public class JavaPartitioner extends org.eclipse.jface.text.rules.FastPartitioner {
	public JavaPartitioner() {
		super(new JavaPartitionScanner(), new String[] {
			"__java_multi_line_api_comment","__java_single_line_comment","__java_multi_line_comment","__java_string"
		});
	}
}

Back to the top