/******************************************************************************* * Copyright (c) 2007, 2008 Edgar Espina. * 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 * *******************************************************************************/ package org.deved.antlride.gunit.internal.ui.text.highlighting; import java.util.ArrayList; import java.util.List; import org.deved.antlride.common.ui.text.highlighting.AntlrBaseHighlightScanner; import org.deved.antlride.gunit.ui.GUnitUIConstants; import org.eclipse.dltk.ui.text.IColorManager; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.jface.text.rules.IRule; public class GUnitSinglelineStringHighlightScanner extends AntlrBaseHighlightScanner { private static final String[] TOKENS = { GUnitUIConstants.SH_STRING }; public GUnitSinglelineStringHighlightScanner(IColorManager manager, IPreferenceStore store) { super(manager, store); } @Override protected List<IRule> createRules() { List<IRule> rules = new ArrayList<IRule>(); // default setDefaultReturnToken(getToken(GUnitUIConstants.SH_STRING)); return rules; } @Override protected String[] getTokenProperties() { return TOKENS; } }