KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > ui > templates > IHelpContextIds


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.pde.internal.ui.templates;
12
13 public interface IHelpContextIds {
14     
15     public static final String JavaDoc PREFIX = "org.eclipse.pde.doc.user."; //$NON-NLS-1$
16
public static final String JavaDoc TEMPLATE_EDITOR = PREFIX + "template_editor"; //$NON-NLS-1$
17
public static final String JavaDoc TEMPLATE_HELLO_WORLD = PREFIX + "template_hello_world"; //$NON-NLS-1$
18
public static final String JavaDoc TEMPLATE_INTRO = PREFIX + "template_intro"; //$NON-NLS-1$
19
public static final String JavaDoc TEMPLATE_HELP = PREFIX + "template_help"; //$NON-NLS-1$
20
public static final String JavaDoc TEMPLATE_MULTIPAGE_EDITOR = PREFIX + "template_multipage_editor"; //$NON-NLS-1$
21
public static final String JavaDoc TEMPLATE_NEW_WIZARD = PREFIX + "template_new_wizard"; //$NON-NLS-1$
22
public static final String JavaDoc TEMPLATE_POPUP_MENU = PREFIX + "template_popup_menu"; //$NON-NLS-1$
23
public static final String JavaDoc TEMPLATE_PREFERENCE_PAGE = PREFIX + "template_preference_page"; //$NON-NLS-1$
24
public static final String JavaDoc TEMPLATE_PROPERTY_PAGE = PREFIX + "template_property_page"; //$NON-NLS-1$
25
public static final String JavaDoc TEMPLATE_VIEW = PREFIX + "template_view"; //$NON-NLS-1$
26
public static final String JavaDoc TEMPLATE_BUILDER = PREFIX + "template_builder"; //$NON-NLS-1$
27
public static final String JavaDoc TEMPLATE_RCP_MAIL = PREFIX + "rcp_mail"; //$NON-NLS-1$
28
public static final String JavaDoc TEMPLATE_UNIVERSAL_WELCOME = PREFIX + "template_universal_welcome"; //$NON-NLS-1$
29
// TODO: MP: SPLASH: Update help context ID
30
public static final String JavaDoc TEMPLATE_SPLASH_HANDLERS = PREFIX + "splash_handlers"; //$NON-NLS-1$
31

32 }
33
Popular Tags