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);
//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();
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();