Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/marte/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/preferences/IPreferencesConstants.java')
-rw-r--r--extraplugins/marte/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/preferences/IPreferencesConstants.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/extraplugins/marte/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/preferences/IPreferencesConstants.java b/extraplugins/marte/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/preferences/IPreferencesConstants.java
deleted file mode 100644
index 687b3a721db..00000000000
--- a/extraplugins/marte/org.eclipse.papyrus.parsers/src/org/eclipse/papyrus/parsers/preferences/IPreferencesConstants.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*****************************************************************************
- * Copyright (c) 2008 CEA LIST.
- *
- *
- * 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:
- * Remi Schnekenburger (CEA LIST) Remi.Schnekenburger@cea.fr - Initial API and implementation
- *
- *****************************************************************************/
-package org.eclipse.papyrus.parsers.preferences;
-
-import org.eclipse.papyrus.parsers.PapyrusParsersPlugin;
-import org.eclipse.papyrus.parsers.texteditor.propertylabel.IPropertyLabelColorConstants;
-
-/**
- * Defines constants which are used to refer to values in the plugin's preference bundle.
- */
-public interface IPreferencesConstants {
-
- /**
- * ui plugin id.
- */
- String PREFIX = PapyrusParsersPlugin.PLUGIN_ID + ".";
-
- /**
- * color prefix.
- */
- String PREFIX_COLOR = PREFIX + "color.";
-
- /**
- * color for basic grammar text.
- */
- String COLOR_DEFAULT = PREFIX_COLOR + IPropertyLabelColorConstants.DEFAULT;
-
- /**
- * color for grammar keyword text.
- */
- String COLOR_KEYWORD = PREFIX_COLOR + IPropertyLabelColorConstants.KEYWORD;
-
- /**
- * color for grammar string text.
- */
- String COLOR_STRING = PREFIX_COLOR + IPropertyLabelColorConstants.STRING;
-
- /**
- * color for grammar symbol text.
- */
- String COLOR_SYMBOL = PREFIX_COLOR + IPropertyLabelColorConstants.SYMBOL;
-}

Back to the top