1 11 package org.eclipse.pde.internal.ui; 12 13 import org.eclipse.core.runtime.QualifiedName; 14 15 public interface IPDEUIConstants { 16 String PLUGIN_ID = "org.eclipse.pde.ui"; 18 String MANIFEST_EDITOR_ID = PLUGIN_ID + ".manifestEditor"; String FEATURE_EDITOR_ID = PLUGIN_ID + ".featureEditor"; String SITE_EDITOR_ID = PLUGIN_ID + ".siteEditor"; String BUILD_EDITOR_ID = PLUGIN_ID + ".buildEditor"; String SCHEMA_EDITOR_ID = PLUGIN_ID + ".schemaEditor"; String PRODUCT_EDITOR_ID = PLUGIN_ID + ".productEditor"; String SIMPLE_CHEAT_SHEET_EDITOR_ID = PLUGIN_ID + ".simpleCheatSheetEditor"; String COMPOSITE_CHEAT_SHEET_EDITOR_ID = PLUGIN_ID + ".compositeCheatSheetEditor"; String TARGET_EDITOR_ID = PLUGIN_ID + ".targetEditor"; String PLUGINS_VIEW_ID = "org.eclipse.pde.ui.PluginsView"; String DEPENDENCIES_VIEW_ID = "org.eclipse.pde.ui.DependenciesView"; String PERSPECTIVE_ID = "org.eclipse.pde.ui.PDEPerspective"; 31 String RUN_LAUNCHER_ID = PLUGIN_ID + "." + "WorkbenchRunLauncher"; String DEBUG_LAUNCHER_ID = PLUGIN_ID + "." + "WorkbenchDebugLauncher"; String MARKER_SYSTEM_FILE_PATH = PLUGIN_ID + "."+ "systemFilePath"; 35 QualifiedName PROPERTY_EDITOR_PAGE_KEY = 36 new QualifiedName(PLUGIN_ID, "editor-page-key"); QualifiedName PROPERTY_MANIFEST_EDITOR_PAGE_KEY = 38 new QualifiedName(PLUGIN_ID, "manifest-editor-page-key"); QualifiedName DEFAULT_PRODUCT_EXPORT_LOCATION = 40 new QualifiedName(PLUGIN_ID, "product-export-location"); QualifiedName DEFAULT_PRODUCT_EXPORT_DIR = 42 new QualifiedName(PLUGIN_ID, "product-export-type"); QualifiedName DEFAULT_PRODUCT_EXPORT_ROOT = 44 new QualifiedName(PLUGIN_ID, "product-export-root"); 46 String PLUGIN_DOC_ROOT = "/org.eclipse.pde.doc.user/"; 48 String LEGACY_UI_TEST_APPLICATION = "org.eclipse.pde.junit.runtime.legacytestapplication"; String UI_TEST_APPLICATION = "org.eclipse.pde.junit.runtime.uitestapplication"; String CORE_TEST_APPLICATION = "org.eclipse.pde.junit.runtime.coretestapplication"; 53 60 String DOCLEARLOG = "clearwslog"; String LAUNCHER_PDE_VERSION = "pde.version"; String APPEND_ARGS_EXPLICITLY = "append.args"; 64 } 65 | Popular Tags |