/* Copyright (c) 2008, 2017 Phil Muldoon 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: * Phil Muldoon <pkmuldoon@picobot.org> - initial API and implementation. *******************************************************************************/ package org.eclipse.linuxtools.internal.systemtap.ui.ide.editors.stp; public interface STPColorConstants { String KEYWORD ="org.eclipse.linuxtools.stap.editor.color.keyword"; //$NON-NLS-1$ String STRING="org.eclipse.linuxtools.stap.editor.color.string"; //$NON-NLS-1$ String COMMENT ="org.eclipse.linuxtools.stap.editor.color.comment"; //$NON-NLS-1$ String TYPE="org.eclipse.linuxtools.stap.editor.color.type"; //$NON-NLS-1$ String DEFAULT="org.eclipse.linuxtools.stap.editor.color.default"; //$NON-NLS-1$ String EMBEDDED ="org.eclipse.linuxtools.stap.editor.color.embedded"; //$NON-NLS-1$ String EMBEDDEDC="org.eclipse.linuxtools.stap.editor.color.embeddedc"; //$NON-NLS-1$ }