[Title] Refactored
authorkh5325.kim <kh5325.kim@samsung.com>
Fri, 20 Jul 2012 12:30:43 +0000 (21:30 +0900)
committerkh5325.kim <kh5325.kim@samsung.com>
Fri, 20 Jul 2012 12:30:43 +0000 (21:30 +0900)
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

org.tizen.common/src/org/tizen/common/core/application/InstallPathConfig.java

index e6c29fe..bff4433 100644 (file)
@@ -40,14 +40,6 @@ final public class InstallPathConfig {
 
     private static String defaultHomePath;
     private static String sdkInstallPath;
-    private final static String SDKSUFFIX = "tizen-sdk-data" + File.separatorChar + "tizensdkpath";
-
-    // Registry Key
-    private static final String REGISTRY_PATH_OF_SHELL_FOLDER = "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders";
-    // public static final String REGISTRY_APP_DATA_OF_SHELL_FOLDER = "AppData";
-    private static final String REGISTRY_LOCAL_APP_DATA_OF_SHELL_FOLDER = "\"Local AppData\"";
-    // Value Column
-    private static final String REG_SZ = "REG_SZ";
 
     private static final String DIR_PLATFORMS = "platforms";
     private static final String DIR_SAMPLES = "samples";
@@ -59,6 +51,15 @@ final public class InstallPathConfig {
     private static final String DIR_LIBRARY = "library";
     private static final String DIR_SDK_DATA = "tizen-sdk-data";
 
+    private final static String SDKSUFFIX = DIR_SDK_DATA + File.separatorChar + "tizensdkpath";
+
+    // Registry Key
+    private static final String REGISTRY_PATH_OF_SHELL_FOLDER = "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders";
+    // public static final String REGISTRY_APP_DATA_OF_SHELL_FOLDER = "AppData";
+    private static final String REGISTRY_LOCAL_APP_DATA_OF_SHELL_FOLDER = "\"Local AppData\"";
+    // Value Column
+    private static final String REG_SZ = "REG_SZ";
+
     static {
         // FIXME : don't need the following lines if using environment variable
         if (OSChecker.isWindows()) {