[Title]add public
authormunkyu.im <munkyu.im@samsung.com>
Thu, 15 Mar 2012 08:31:13 +0000 (17:31 +0900)
committermunkyu.im <munkyu.im@samsung.com>
Thu, 15 Mar 2012 08:41:49 +0000 (17:41 +0900)
[Type]
[Module]
[Priority]
[CQ#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

src/org/tizen/emulator/manager/tool/FileIO.java

index 9c278e4..72a5638 100644 (file)
@@ -29,11 +29,11 @@ public class FileIO {
                return instance;
        }
        
-       String getSdkRoot() throws IOException {
+       public String getSdkRoot() throws IOException {
                return dir3.getCanonicalPath();
        }       
        
-       String getSdbPath() throws IOException {
+       public String getSdbPath() throws IOException {
                String sdb_suffix;
                String root_dir = getSdkRoot();
                StringBuffer sb = new StringBuffer(root_dir);
@@ -51,14 +51,14 @@ public class FileIO {
                //return dir1.getCanonicalPath();
        }
        
-       String getArchPath() throws IOException {
+       public String getArchPath() throws IOException {
                String temp =  dir2.getCanonicalPath();
                StringBuffer sb = new StringBuffer(temp);
                return sb.append(arch_suffix).toString();
        }
 
        // ~/tizen_sdk/Emulator/skins/icons/vtm.ico
-       String getIconPath() throws IOException {
+    public String getIconPath() throws IOException {
                String temp =  dir2.getCanonicalPath();
                StringBuffer sb = new StringBuffer(temp);
                return sb.append(icon_suffix).toString();
@@ -94,7 +94,7 @@ public class FileIO {
                return sb.append(baseimg_suffix).toString();
        }
        
-       String getEtcPath() throws IOException {
+       public String getEtcPath() throws IOException {
                String temp =  dir2.getCanonicalPath();
                StringBuffer sb = new StringBuffer(temp);
                return sb.append(etc_suffix).toString();