Split up Sys.openURL into the platform specific DisplayImplementation

This commit is contained in:
Elias Naur 2004-11-22 21:22:30 +00:00
parent 23b6e400eb
commit 2577ffd377
7 changed files with 38 additions and 53 deletions

View file

@ -102,4 +102,10 @@ final class Win32Display implements DisplayImplementation {
public native void destroyCursor(Object cursorHandle);
public native int getPbufferCaps();
public boolean openURL(String url) {
nOpenURL(url);
return true;
}
private native void nOpenURL(String url);
}