blob: 067f2dd93bf39c54d02d042459df301c6df363d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 Borland Software Corporation 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:
* Borland Software Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.m2m.internal.qvt.oml.editor.ui.colorer;
public class IQVTColors {
// colors
public static String PROPOSAL_BG = "proposal_background"; //$NON-NLS-1$
public static String DEFAULT = "default"; //$NON-NLS-1$
public static String KEYWORD = "keyword"; //$NON-NLS-1$
public static String STRING = "string"; //$NON-NLS-1$
public static String NUMBER = "number"; //$NON-NLS-1$
public static String FATAL_ASSERT = "fatal_assert"; //$NON-NLS-1$
public static String MULTILINE_COMMENT = "ml_comment"; //$NON-NLS-1$
public static String LINE_COMMENT = "sl_comment"; //$NON-NLS-1$
public static String DOC_OTHERS = "documentation"; //$NON-NLS-1$
public static String DOC_TAG = "doc_tag"; //$NON-NLS-1$
public static String TASK_TAG = "task_tag"; //$NON-NLS-1$
public static String MODEL_PARAMETER = "model_parameter"; //$NON-NLS-1$
// public static String OPERATION_PARAMETER = "operation_parameter"; //$NON-NLS-1$
// public static String VARIABLE = "variable"; //$NON-NLS-1$
public static String SELF_VARIABLE = "self_variable"; //$NON-NLS-1$
public static String RESULT_VARIABLE = "result_variable"; //$NON-NLS-1$
public static String MODULE_ELEMENT = "module_element"; //$NON-NLS-1$
public static String USER_MODEL_ELEMENT = "model_element"; //$NON-NLS-1$
public static String STDLIB_ELEMENT = "stdlib_element"; //$NON-NLS-1$
public static String INTERMEDIATE_DATA = "interm_data"; //$NON-NLS-1$
// suffixes
public static String COLOR_SUFFIX = ".color"; //$NON-NLS-1$
public static String BOLD_SUFFIX = ".bold"; //$NON-NLS-1$
public static String ITALIC_SUFFIX = ".italic"; //$NON-NLS-1$
public static String STRIKETHROUGH_SUFFIX = ".strikethrough"; //$NON-NLS-1$
public static String UNDERLINE_SUFFIX = ".underline"; //$NON-NLS-1$
public static String ENABLED_SUFFIX = ".enabled"; //$NON-NLS-1$
// prefix
public static String BASE_COLORS_KEY_PREFIX = "QVTEditor.color."; //$NON-NLS-1$
}