KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > junit > ui > IJUnitHelpContextIds


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.jdt.internal.junit.ui;
12
13 /**
14  * Help context ids for the JUnit UI.
15  */

16 public interface IJUnitHelpContextIds {
17     public static final String JavaDoc PREFIX= JUnitPlugin.PLUGIN_ID + '.';
18
19     // Actions
20
public static final String JavaDoc COPYTRACE_ACTION= PREFIX + "copy_trace_action_context"; //$NON-NLS-1$
21
public static final String JavaDoc COPYFAILURELIST_ACTION= PREFIX + "copy_failure_list_action_context"; //$NON-NLS-1$
22
public static final String JavaDoc ENABLEFILTER_ACTION= PREFIX + "enable_filter_action_context"; //$NON-NLS-1$
23
public static final String JavaDoc OPENEDITORATLINE_ACTION= PREFIX + "open_editor_atline_action_context"; //$NON-NLS-1$
24
public static final String JavaDoc OPENTEST_ACTION= PREFIX + "open_test_action_context"; //$NON-NLS-1$
25
public static final String JavaDoc RERUN_ACTION= PREFIX + "rerun_test_action_context"; //$NON-NLS-1$
26
public static final String JavaDoc GOTO_REFERENCED_TEST_ACTION_CONTEXT= PREFIX + "goto_referenced_test_action_context"; //$NON-NLS-1$
27
public static final String JavaDoc OUTPUT_SCROLL_LOCK_ACTION= PREFIX + "scroll_lock"; //$NON-NLS-1$
28

29     // view parts
30
public static final String JavaDoc RESULTS_VIEW= PREFIX + "results_view_context"; //$NON-NLS-1$
31
public static final String JavaDoc RESULTS_VIEW_TOGGLE_ORIENTATION_ACTION= PREFIX + "results_view_toggle_call_mode_action_context"; //$NON-NLS-1$
32

33     // Preference/Property pages
34
public static final String JavaDoc JUNIT_PREFERENCE_PAGE= PREFIX + "junit_preference_page_context"; //$NON-NLS-1$
35

36     // Wizard pages
37
public static final String JavaDoc NEW_TESTCASE_WIZARD_PAGE= PREFIX + "new_testcase_wizard_page_context"; //$NON-NLS-1$
38
public static final String JavaDoc NEW_TESTCASE_WIZARD_PAGE2= PREFIX + "new_testcase_wizard_page2_context"; //$NON-NLS-1$
39
public static final String JavaDoc NEW_TESTSUITE_WIZARD_PAGE= PREFIX + "new_testsuite_wizard_page2_context"; //$NON-NLS-1$
40
public static final String JavaDoc LAUNCH_CONFIGURATION_DIALOG_JUNIT_MAIN_TAB= PREFIX + "launch_configuration_dialog_junit_main_tab"; //$NON-NLS-1$
41

42     // Dialogs
43
public static final String JavaDoc TEST_SELECTION_DIALOG= PREFIX + "test_selection_context"; //$NON-NLS-1$
44
public static final String JavaDoc RESULT_COMPARE_DIALOG= PREFIX + "result_compare_context"; //$NON-NLS-1$
45

46 }
47
Popular Tags