view src/remoteeditor/editors/XMLPartitionScanner.java @ 142:75034fcaa1f1

*** empty log message ***
author pin
date Tue, 05 Feb 2008 19:46:29 +0900
parents cf13bdba762b
children
line wrap: on
line source

package remoteeditor.editors;

import org.eclipse.jface.text.rules.*;

public class XMLPartitionScanner extends RuleBasedPartitionScanner {
	public final static String XML_COMMENT = "__xml_comment";
	public final static String XML_TAG = "__xml_tag";

	public XMLPartitionScanner() {

		IToken xmlComment = new Token(XML_COMMENT);
		IToken tag = new Token(XML_TAG);

		IPredicateRule[] rules = new IPredicateRule[2];

		rules[0] = new MultiLineRule("<!--", "-->", xmlComment);
		rules[1] = new TagRule(tag);

		setPredicateRules(rules);
	}
}