KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > search > internal > ui > ISearchHelpContextIds


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 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.search.internal.ui;
12
13 import org.eclipse.search.ui.NewSearchUI;
14
15 public interface ISearchHelpContextIds {
16     
17     public static final String JavaDoc PREFIX= NewSearchUI.PLUGIN_ID + "."; //$NON-NLS-1$
18

19     public static final String JavaDoc SEARCH_DIALOG= PREFIX + "search_dialog_context"; //$NON-NLS-1$
20

21     public static final String JavaDoc TEXT_SEARCH_PAGE= PREFIX + "text_search_page_context"; //$NON-NLS-1$
22
public static final String JavaDoc TYPE_FILTERING_DIALOG= PREFIX + "type_filtering_dialog_context"; //$NON-NLS-1$
23

24     public static final String JavaDoc SEARCH_VIEW= PREFIX + "search_view_context"; //$NON-NLS-1$
25
public static final String JavaDoc New_SEARCH_VIEW= PREFIX + "new_search_view_context"; //$NON-NLS-1$
26

27     public static final String JavaDoc REPLACE_DIALOG= PREFIX + "replace_dialog_context"; //$NON-NLS-1$
28

29     public static final String JavaDoc SEARCH_PREFERENCE_PAGE= PREFIX + "search_preference_page_context"; //$NON-NLS-1$
30

31     public static final String JavaDoc SELECT_ALL_ACTION = PREFIX + "select_all_action_context"; //$NON-NLS-1$
32

33     public static final String JavaDoc SEARCH_ACTION = PREFIX + "search_action_context"; //$NON-NLS-1$
34

35     public static final String JavaDoc FILE_SEARCH_ACTION= PREFIX + "file_search_action_context"; //$NON-NLS-1$
36
}
37
Popular Tags