Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1a29c6cb98f82f37f2013e82eb06c9012b5f0b3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.help.ui;

import org.eclipse.osee.framework.ui.plugin.util.HelpContext;
import org.eclipse.osee.framework.ui.plugin.util.HelpUtil;

/**
 * @author Roberto E. Escobar
 */
public final class OseeHelpContext {

   private OseeHelpContext() {
      // Private Constructor
   }

   private static final String PLUGIN_ID = "org.eclipse.osee.framework.help.ui";

   public static final HelpContext ARTIFACT_EDITOR = toContext("artifact_editor");
   public static final HelpContext ARTIFACT_EDITOR__ATTRIBUTES = toContext("artifact_editor_attributes");
   public static final HelpContext ARTIFACT_EDITOR__RELATIONS = toContext("artifact_editor_relations");
   public static final HelpContext ARTIFACT_EDITOR__DETAILS = toContext("artifact_editor_details");

   public static final HelpContext ARTIFACT_EXPLORER = toContext("artifact_explorer");
   public static final HelpContext ARTIFACT_SEARCH = toContext("artifact_search");
   public static final HelpContext CHANGE_REPORT_EDITOR = toContext("change_report_editor");
   public static final HelpContext BRANCH_MANAGER = toContext("branch_manager");
   public static final HelpContext DEFINE_NAVIGATOR = toContext("define_navigator");
   public static final HelpContext HISTORY_VIEW = toContext("resource_history_view");
   public static final HelpContext MASS_EDITOR = toContext("mass_artifact_editor");
   public static final HelpContext MERGE_MANAGER = toContext("merge_manager");

   public static final HelpContext QUICK_SEARCH = toContext("quick_search_view");
   public static final HelpContext QUICK_SEARCH_TYPE_FILTER = toContext("quick_search_attribute_type_filter");
   public static final HelpContext QUICK_SEARCH_BY_ID = toContext("quick_search_by_id_option");
   public static final HelpContext QUICK_SEARCH_INCLUDE_DELETED = toContext("quick_search_deleted_option");
   public static final HelpContext QUICK_SEARCH_WORD_ORDER = toContext("quick_search_word_order_option");
   public static final HelpContext QUICK_SEARCH_MATCH_ALL = toContext("quick_search_all_match_locations_option");
   public static final HelpContext QUICK_SEARCH_CASE_SENSITIVE = toContext("quick_search_case_sensitive_option");

   public static final HelpContext SKY_WALKER_VIEW = toContext("sky_walker_view");

   public static final HelpContext TABLE_CUSTOMIZATIONS = toContext("xviewer_table_customization");
   public static final HelpContext RESULTS_VIEW = toContext("xviewer_xresult_view");

   private static HelpContext toContext(String id) {
      return HelpUtil.asContext(PLUGIN_ID, id);
   }
}

Back to the top