use of com.google.gwt.core.client.JsArrayString in project GwtMobile by dennisjzh.
the class File method getFileBasePaths.
public static String[] getFileBasePaths() {
JsArrayString jsArray = getFileBasePathsNative();
String[] array = new String[jsArray.length()];
for (int i = 0; i < jsArray.length(); i++) {
array[i] = jsArray.get(i);
}
return array;
}
Aggregations