[Title] Revised help context ids
authorkh5325.kim <kh5325.kim@samsung.com>
Fri, 14 Sep 2012 08:50:39 +0000 (17:50 +0900)
committerkh5325.kim <kh5325.kim@samsung.com>
Fri, 14 Sep 2012 08:50:39 +0000 (17:50 +0900)
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

org.tizen.common/src/org/tizen/common/TizenHelpContextIds.java

index c543ddc..38ce5c7 100644 (file)
@@ -27,23 +27,26 @@ package org.tizen.common;
 
 public class TizenHelpContextIds
 {
-    public static final String HELP_COMMON_CONNECTION_EXPLORER_CONTEXT = "org.tizen.ide.common.connection_explorer_context";
-    public static final String HELP_COMMON_LOG_CONTEXT = "org.tizen.ide.common.log_context";
+    private static final String HELP_COMMON = "org.tizen.ide.common.";
+    public static final String HELP_COMMON_CONNECTION_EXPLORER_CONTEXT = HELP_COMMON + "connection_explorer_context";
+    public static final String HELP_COMMON_LOG_CONTEXT = HELP_COMMON + "log_context";
 
-    public static final String HELP_NATIVE_CODECOVERAGE_CONTEXT = "org.tizen.ide.native.codecoverage_context";
-    public static final String HELP_NATIVE_UNITTEST_CONTEXT = "org.tizen.ide.native.unittest_context";
-    public static final String HELP_NATIVE_MANIFEST_CONTEXT = "org.tizen.ide.native.manifest_context";
-    public static final String HELP_NATIVE_PROJECT_WIZARD_CONTEXT = "org.tizen.ide.native.project_wizard_context";
+    private static final String HELP_NATIVE = "org.tizen.ide.native.";
+    public static final String HELP_NATIVE_CODECOVERAGE_CONTEXT = HELP_NATIVE + "codecoverage_context";
+    public static final String HELP_NATIVE_UNITTEST_CONTEXT = HELP_NATIVE + "unittest_context";
+    public static final String HELP_NATIVE_MANIFEST_CONTEXT = HELP_NATIVE + "manifest_context";
+    public static final String HELP_NATIVE_PROJECT_WIZARD_CONTEXT = HELP_NATIVE + "project_wizard_context";
 
-    public static final String HELP_WEB_WIDGET_CONFIGURATION_EDITOR_CONTEXT = "org.tizen.ide.web.widget_configuration_editor_context";
-    public static final String HELP_WEB_HTML_EDITOR_CONTEXT = "org.tizen.ide.web.html_editor_context";
-    public static final String HELP_WEB_JAVASCRIPT_EDITOR_CONTEXT = "org.tizen.ide.web.javascript_editor_context";
-    public static final String HELP_WEB_CSS_EDITOR_CONTEXT = "org.tizen.ide.web.css_editor_context";
-    public static final String HELP_WEB_HTML_PREVIEW_CONTEXT = "org.tizen.ide.web.html_preview_context";
-    public static final String HELP_WEB_CSS_PREVIEW_CONTEXT = "org.tizen.ide.web.css_preview_context";
-    public static final String HELP_WEB_PREFERENCES_CONTEXT = "org.tizen.ide.web.preferences_context";
-    public static final String HELP_WEB_SIMULATOR_PREFERENCES_CONTEXT = "org.tizen.ide.web.simulator_preferences_context";
-    public static final String HELP_WEB_NEW_PROJECT_WIZARD_CONTEXT = "org.tizen.ide.web.new_project_wizard_context";
-    public static final String HELP_WEB_USER_TEMPLATE_CONTEXT = "org.tizen.ide.web.user_template_context";
+    private static final String HELP_WEB = "org.tizen.ide.web.";
+    public static final String HELP_WEB_WIDGET_CONFIGURATION_EDITOR_CONTEXT = HELP_WEB + "widget_configuration_editor_context";
+    public static final String HELP_WEB_HTML_EDITOR_CONTEXT = HELP_WEB + "html_editor_context";
+    public static final String HELP_WEB_JAVASCRIPT_EDITOR_CONTEXT = HELP_WEB + "javascript_editor_context";
+    public static final String HELP_WEB_CSS_EDITOR_CONTEXT = HELP_WEB + "css_editor_context";
+    public static final String HELP_WEB_HTML_PREVIEW_CONTEXT = HELP_WEB + "html_preview_context";
+    public static final String HELP_WEB_CSS_PREVIEW_CONTEXT = HELP_WEB + "css_preview_context";
+    public static final String HELP_WEB_PREFERENCES_CONTEXT = HELP_WEB + "preferences_context";
+    public static final String HELP_WEB_SIMULATOR_PREFERENCES_CONTEXT = HELP_WEB + "simulator_preferences_context";
+    public static final String HELP_WEB_NEW_PROJECT_WIZARD_CONTEXT = HELP_WEB + "new_project_wizard_context";
+    public static final String HELP_WEB_USER_TEMPLATE_CONTEXT = HELP_WEB + "user_template_context";
     
 }