Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: fe017efdb4d52628df681b937a390d858d44d235 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 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$
}

Back to the top