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.templates;
11:
12: public interface IHelpContextIds {
13:
14: public static final String PREFIX = "org.eclipse.pde.doc.user."; //$NON-NLS-1$
15: public static final String TEMPLATE_EDITOR = PREFIX
16: + "template_editor"; //$NON-NLS-1$
17: public static final String TEMPLATE_HELLO_WORLD = PREFIX
18: + "template_hello_world"; //$NON-NLS-1$
19: public static final String TEMPLATE_INTRO = PREFIX
20: + "template_intro"; //$NON-NLS-1$
21: public static final String TEMPLATE_HELP = PREFIX + "template_help"; //$NON-NLS-1$
22: public static final String TEMPLATE_MULTIPAGE_EDITOR = PREFIX
23: + "template_multipage_editor"; //$NON-NLS-1$
24: public static final String TEMPLATE_NEW_WIZARD = PREFIX
25: + "template_new_wizard"; //$NON-NLS-1$
26: public static final String TEMPLATE_POPUP_MENU = PREFIX
27: + "template_popup_menu"; //$NON-NLS-1$
28: public static final String TEMPLATE_PREFERENCE_PAGE = PREFIX
29: + "template_preference_page"; //$NON-NLS-1$
30: public static final String TEMPLATE_PROPERTY_PAGE = PREFIX
31: + "template_property_page"; //$NON-NLS-1$
32: public static final String TEMPLATE_VIEW = PREFIX + "template_view"; //$NON-NLS-1$
33: public static final String TEMPLATE_BUILDER = PREFIX
34: + "template_builder"; //$NON-NLS-1$
35: public static final String TEMPLATE_RCP_MAIL = PREFIX + "rcp_mail"; //$NON-NLS-1$
36: public static final String TEMPLATE_UNIVERSAL_WELCOME = PREFIX
37: + "template_universal_welcome"; //$NON-NLS-1$
38: // TODO: MP: SPLASH: Update help context ID
39: public static final String TEMPLATE_SPLASH_HANDLERS = PREFIX
40: + "splash_handlers"; //$NON-NLS-1$
41:
42: }
|