blob: 16bb4f00f3de619d56a156ba037896bf61c3bb8a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.ocl.xtext.base.ui.syntaxcoloring;
import org.eclipse.xtext.ui.editor.syntaxcoloring.DefaultAntlrTokenToAttributeIdMapper;
import org.eclipse.xtext.ui.editor.syntaxcoloring.DefaultHighlightingConfiguration;
public class BaseAntlrTokenToAttributeIdMapper extends DefaultAntlrTokenToAttributeIdMapper
{
@Override
protected String calculateId(String tokenName, int tokenType) {
if("RULE_DOUBLE_QUOTED_STRING".equals(tokenName)) {
return DefaultHighlightingConfiguration.STRING_ID;
}
if("RULE_SINGLE_QUOTED_STRING".equals(tokenName)) {
return DefaultHighlightingConfiguration.STRING_ID;
}
if("RULE_ML_SINGLE_QUOTED_STRING".equals(tokenName)) {
return DefaultHighlightingConfiguration.STRING_ID;
}
if("RULE_ESCAPED_ID".equals(tokenName)) {
return DefaultHighlightingConfiguration.STRING_ID;
}
return super.calculateId(tokenName, tokenType);
/* if("RULE_STRING".equals(tokenName)) {
return DefaultHighlightingConfiguration.STRING_ID;
}
if("RULE_INT".equals(tokenName)) {
return DefaultHighlightingConfiguration.NUMBER_ID;
}
if("RULE_ML_COMMENT".equals(tokenName) | "RULE_SL_COMMENT".equals(tokenName)) {
return DefaultHighlightingConfiguration.COMMENT_ID;
}
return DefaultHighlightingConfiguration.DEFAULT_ID;
*/ }
}