Initial attempt at resolving SWT3.7 missing operatons in Avian. Everything seems to be working except floatToIntBits, hence the test case failing.

This commit is contained in:
Ben Limmer
2011-12-28 15:52:53 -07:00
parent 21610c1c9b
commit b3850ac76d
4 changed files with 64 additions and 2 deletions

View File

@ -61,6 +61,10 @@ public class File implements Serializable {
return isFile(path);
}
public boolean isAbsolute() {
return path.equals(toAbsolutePath(path));
}
private static native boolean canRead(String path);
public boolean canRead() {