Implement FileSystemRegistry::getRootsImpl native

This commit is contained in:
Marco Castelluccio 2014-11-19 15:45:21 +01:00
Родитель 86d417ce62
Коммит 4028c7a113
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -654,3 +654,9 @@ Native.create("com/sun/midp/io/j2me/storage/RandomAccessStream.close.(I)V", func
fs.close(handle, resolve);
});
}, true);
Native.create("javax/microedition/io/file/FileSystemRegistry.getRootsImpl.()[Ljava/lang/String;", function() {
var array = util.newArray("[Ljava/lang/String;", 1);
array[0] = util.newString("");
return array;
});