KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ltk > internal > ui > refactoring > IRefactoringHelpContextIds


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 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.ltk.internal.ui.refactoring;
12
13 /**
14  * Help context ids for the refactoring user interface.
15  * <p>
16  * The ids still forward to the <code>org.eclipse.jdt.ui</code> namespace,
17  * since the documentation is in the <code>org.eclipse.jdt.ui</code> feature.
18  * </p>
19  */

20 public interface IRefactoringHelpContextIds {
21     
22     public static final String JavaDoc PREFIX= "org.eclipse.jdt.ui" + '.'; //$NON-NLS-1$
23

24     public static final String JavaDoc NEXT_CHANGE_ACTION= PREFIX + "next_change_action"; //$NON-NLS-1$
25

26     public static final String JavaDoc NEXT_PROBLEM_ACTION= PREFIX + "next_problem_action"; //$NON-NLS-1$
27

28     public static final String JavaDoc PREVIOUS_CHANGE_ACTION= PREFIX + "previous_change_action"; //$NON-NLS-1$
29

30     public static final String JavaDoc PREVIOUS_PROBLEM_ACTION= PREFIX + "previous_problem_action"; //$NON-NLS-1$
31

32     /** @since 3.2 */
33     public static final String JavaDoc REFACTORING_ACCEPT_REFACTORING_PAGE= PREFIX + "refactoring_accept_page"; //$NON-NLS-1$
34

35     /** @since 3.2 */
36     public static final String JavaDoc REFACTORING_APPLY_SCRIPT_PAGE= PREFIX + "refactoring_apply_script_page"; //$NON-NLS-1$
37

38     /** @since 3.2 */
39     public static final String JavaDoc REFACTORING_CREATE_SCRIPT_PAGE= PREFIX + "refactoring_create_script_page"; //$NON-NLS-1$
40

41     public static final String JavaDoc REFACTORING_ERROR_WIZARD_PAGE= PREFIX + "refactoring_error_wizard_page_context"; //$NON-NLS-1$
42

43     /** @since 3.2 */
44     public static final String JavaDoc REFACTORING_HISTORY_WIZARD_PAGE= PREFIX + "refactoring_history_wizard_page_context"; //$NON-NLS-1$
45

46     public static final String JavaDoc REFACTORING_PREVIEW_WIZARD_PAGE= PREFIX + "refactoring_preview_wizard_page_context"; //$NON-NLS-1$
47

48     /** @since 3.2 */
49     public static final String JavaDoc REFACTORING_SHOW_HISTORY_PAGE= PREFIX + "refactoring_show_history_page"; //$NON-NLS-1$
50

51     /** @since 3.2 */
52     public static final String JavaDoc REFACTORING_PROPERTY_PAGE= PREFIX + "refactoring_property_page"; //$NON-NLS-1$
53
}
54
Popular Tags