01: /*******************************************************************************
02: * Copyright (c) 2000, 2007 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.pde.internal.ui;
11:
12: import org.eclipse.core.runtime.QualifiedName;
13:
14: public interface IPDEUIConstants {
15: String PLUGIN_ID = "org.eclipse.pde.ui"; //$NON-NLS-1$
16:
17: String MANIFEST_EDITOR_ID = PLUGIN_ID + ".manifestEditor"; //$NON-NLS-1$
18: String FEATURE_EDITOR_ID = PLUGIN_ID + ".featureEditor"; //$NON-NLS-1$
19: String SITE_EDITOR_ID = PLUGIN_ID + ".siteEditor"; //$NON-NLS-1$
20: String BUILD_EDITOR_ID = PLUGIN_ID + ".buildEditor"; //$NON-NLS-1$
21: String SCHEMA_EDITOR_ID = PLUGIN_ID + ".schemaEditor"; //$NON-NLS-1$
22: String PRODUCT_EDITOR_ID = PLUGIN_ID + ".productEditor"; //$NON-NLS-1$
23: String SIMPLE_CHEAT_SHEET_EDITOR_ID = PLUGIN_ID
24: + ".simpleCheatSheetEditor"; //$NON-NLS-1$
25: String COMPOSITE_CHEAT_SHEET_EDITOR_ID = PLUGIN_ID
26: + ".compositeCheatSheetEditor"; //$NON-NLS-1$
27: String TABLE_OF_CONTENTS_EDITOR_ID = PLUGIN_ID + ".tocEditor"; //$NON-NLS-1$
28: String TARGET_EDITOR_ID = PLUGIN_ID + ".targetEditor"; //$NON-NLS-1$
29: String PLUGINS_VIEW_ID = "org.eclipse.pde.ui.PluginsView"; //$NON-NLS-1$
30: String DEPENDENCIES_VIEW_ID = "org.eclipse.pde.ui.DependenciesView"; //$NON-NLS-1$
31: String PERSPECTIVE_ID = "org.eclipse.pde.ui.PDEPerspective"; //$NON-NLS-1$
32:
33: String RUN_LAUNCHER_ID = PLUGIN_ID + "." + "WorkbenchRunLauncher"; //$NON-NLS-1$ //$NON-NLS-2$
34: String DEBUG_LAUNCHER_ID = PLUGIN_ID
35: + "." + "WorkbenchDebugLauncher"; //$NON-NLS-1$ //$NON-NLS-2$
36: String MARKER_SYSTEM_FILE_PATH = PLUGIN_ID + "." + "systemFilePath"; //$NON-NLS-1$ //$NON-NLS-2$
37:
38: QualifiedName PROPERTY_EDITOR_PAGE_KEY = new QualifiedName(
39: PLUGIN_ID, "editor-page-key"); //$NON-NLS-1$
40: QualifiedName PROPERTY_MANIFEST_EDITOR_PAGE_KEY = new QualifiedName(
41: PLUGIN_ID, "manifest-editor-page-key"); //$NON-NLS-1$
42: QualifiedName DEFAULT_PRODUCT_EXPORT_LOCATION = new QualifiedName(
43: PLUGIN_ID, "product-export-location"); //$NON-NLS-1$
44: QualifiedName DEFAULT_PRODUCT_EXPORT_DIR = new QualifiedName(
45: PLUGIN_ID, "product-export-type"); //$NON-NLS-1$
46: QualifiedName DEFAULT_PRODUCT_EXPORT_ROOT = new QualifiedName(
47: PLUGIN_ID, "product-export-root"); //$NON-NLS-1$
48:
49: String PLUGIN_DOC_ROOT = "/org.eclipse.pde.doc.user/"; //$NON-NLS-1$
50:
51: // JUnit application identifiers
52: String LEGACY_UI_TEST_APPLICATION = "org.eclipse.pde.junit.runtime.legacytestapplication"; //$NON-NLS-1$
53: String UI_TEST_APPLICATION = "org.eclipse.pde.junit.runtime.uitestapplication"; //$NON-NLS-1$
54: String CORE_TEST_APPLICATION = "org.eclipse.pde.junit.runtime.coretestapplication"; //$NON-NLS-1$
55:
56: /**
57: * Launch configuration attribute key. The value is a boolean specifies
58: * whether the launch configuration is being restarted. This does not need to
59: * be promoted to IPDELauncherConstants since clients should not need to know
60: * about restarts.
61: */
62: String RESTART = "restart"; //$NON-NLS-1$
63: /**
64: * Launch configuration attribute key. The value is a boolean specifying
65: * whether the workspace log for an Eclipse application should be cleared
66: * prior to launching.
67: *
68: * TODO, move to IPDELauncherConstants in 3.4
69: */
70: String DOCLEARLOG = "clearwslog"; //$NON-NLS-1$
71: String LAUNCHER_PDE_VERSION = "pde.version"; //$NON-NLS-1$
72: String APPEND_ARGS_EXPLICITLY = "append.args"; //$NON-NLS-1$
73: String GENERATED_CONFIG = "pde.generated.config"; //$NON-NLS-1$
74:
75: }
|