/******************************************************************************* * 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.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 GUnitSinglelineCommentHighlightScanner extends AntlrBaseHighlightScanner { private static final String[] TOKENS = { GUnitUIConstants.SH_SINGLE_LINE_COMMENT }; public GUnitSinglelineCommentHighlightScanner(IColorManager manager, IPreferenceStore store) { super(manager, store); } @Override protected List<IRule> createRules() { setDefaultReturnToken(getToken(GUnitUIConstants.SH_SINGLE_LINE_COMMENT)); return null; } @Override protected String[] getTokenProperties() { return TOKENS; } }