/** SpagoBI, the Open Source Business Intelligence suite Copyright (C) 2012 Engineering Ingegneria Informatica S.p.A. - SpagoBI Competency Center This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. **/ package it.eng.spagobi.studio.dashboard.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); } }