blob: d7c20b6dd043a51cd3cb5b7eb6d7d3fdccbcc54f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsp.ui.internal.style.jspel;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.jface.text.TextAttribute;
import org.eclipse.jface.text.rules.IRule;
import org.eclipse.jface.text.rules.IToken;
import org.eclipse.jface.text.rules.Token;
import org.eclipse.jface.text.rules.WhitespaceRule;
import org.eclipse.jface.text.rules.WordRule;
import org.eclipse.swt.graphics.Color;
import org.eclipse.wst.sse.ui.internal.util.EditorUtility;
/**
* A Java code scanner.
*/
public class JSPELCodeScanner extends org.eclipse.jface.text.rules.RuleBasedScanner {
private static String[] fgKeywords = {
"and", //$NON-NLS-1$
"did", //$NON-NLS-1$
"div", //$NON-NLS-1$
"empty", //$NON-NLS-1$
"eq", //$NON-NLS-1$
"ge", //$NON-NLS-1$
"gt", //$NON-NLS-1$
"or", //$NON-NLS-1$
"le", //$NON-NLS-1$
"lt", //$NON-NLS-1$
"mod", //$NON-NLS-1$
"ne", //$NON-NLS-1$
"not" //$NON-NLS-1$
};
private static String[] fgConstants = {"false", "true"};//$NON-NLS-2$//$NON-NLS-1$
/**
* Creates a Java code scanner
*/
public JSPELCodeScanner() {
// if we use null here, system default will be used
Color background = null; //provider.getColor(JavaColorProvider.EDITOR_BACKGROUND);
JSPELColorProvider.getInstance().loadJavaColors();
IToken keyword = new Token(new TextAttribute(EditorUtility.getColor(JSPELColorProvider.KEYWORD), background, JSPELColorProvider.KEYWORD_BOLD));
IToken type = new Token(new TextAttribute(EditorUtility.getColor(JSPELColorProvider.TYPE), background, JSPELColorProvider.TYPE_BOLD));
IToken string = new Token(new TextAttribute(EditorUtility.getColor(JSPELColorProvider.STRING), background, JSPELColorProvider.STRING_BOLD));
IToken comment = new Token(new TextAttribute(EditorUtility.getColor(JSPELColorProvider.SINGLE_LINE_COMMENT), background, JSPELColorProvider.SINGLE_LINE_COMMENT_BOLD));
IToken other = new Token(new TextAttribute(EditorUtility.getColor(JSPELColorProvider.DEFAULT), background, JSPELColorProvider.DEFAULT_BOLD));
List rules = new ArrayList();
// Add generic whitespace rule.
rules.add(new WhitespaceRule(new JSPELWhitespaceDetector()));
// Add word rule for keywords, types, and constants.
WordRule wordRule = new WordRule(new JSPELWordDetector(), other);
for (int i = 0; i < fgKeywords.length; i++)
wordRule.addWord(fgKeywords[i], keyword);
for (int i = 0; i < fgConstants.length; i++)
wordRule.addWord(fgConstants[i], type);
rules.add(wordRule);
IRule[] result = new IRule[rules.size()];
rules.toArray(result);
setRules(result);
}
}