Implemented getClipboard on Win32

This commit is contained in:
Caspian Rychlik-Prince 2004-08-12 14:54:39 +00:00
parent f0954a9a70
commit 7f28edb980
2 changed files with 45 additions and 1 deletions

View file

@ -59,6 +59,7 @@ public class SysTest {
testTimer();
testPriority();
testUrl();
testClipboard();
}
/**
@ -174,6 +175,13 @@ public class SysTest {
}
}
/**
* Tests the clipboard. Helps to have something in it first...
*/
private void testClipboard() {
System.out.println("Contents of clipboard: '"+Sys.getClipboard()+"'");
}
/**
* Tests the Sys class, and serves as basic usage test
*