mirror of
https://github.com/quinton-ashley/java2js
synced 2024-12-29 10:11:54 +01:00
15 lines
285 B
JavaScript
Executable File
15 lines
285 B
JavaScript
Executable File
jre.imports['java.io.File'].load = () => {
|
|
|
|
class File {
|
|
constructor(file) {
|
|
this.absPath = file;
|
|
}
|
|
getAbsolutePath() {
|
|
return this.absPath;
|
|
}
|
|
}
|
|
File.seperator = File.seperatorChar = '/';
|
|
File.pathSeparator = File.pathSeparatorChar = '/';
|
|
jre.java.io.File = File;
|
|
}
|