diff options
author | SVN Migration <svn@php.net> | 2002-05-19 13:54:38 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-05-19 13:54:38 +0000 |
commit | 62e263f01ef567ae3926739f37d13cac17fe7739 (patch) | |
tree | 353ff240a432d453632dcad134524cbb9e0ea610 /ext/rpc/java/jawt.php | |
parent | e3490f1429d8f03c16d8cef7cd835c3fb2d5b43e (diff) | |
download | php-git-php-4.3.0dev-ZendEngine2.tar.gz |
This commit was manufactured by cvs2svn to create tagphp-4.3.0dev-ZendEngine2
'php_4_3_0_dev_ZendEngine2'.
Diffstat (limited to 'ext/rpc/java/jawt.php')
-rw-r--r-- | ext/rpc/java/jawt.php | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/ext/rpc/java/jawt.php b/ext/rpc/java/jawt.php deleted file mode 100644 index 30f2235611..0000000000 --- a/ext/rpc/java/jawt.php +++ /dev/null @@ -1,27 +0,0 @@ -<? - - // This example is only intented to be run as a CGI. - - $frame = new Java("java.awt.Frame", "Zend"); - $button = new Java("java.awt.Button", "Hello Java world!"); - $frame->add("North", $button); - $frame->validate(); - $frame->pack(); - $frame->visible = True; - - $thread = new Java("java.lang.Thread"); - $thread->sleep(10000); - - $frame->dispose(); - - // Odd behavior noted with Sun JVMs: - // - // 1) $thread->destroy() will fail with a NoSuchMethodError exception. - // 2) The call to (*jvm)->DestroyJVM(jvm) made when PHP terminates - // will hang, unless _BOTH_ the calls to pack and setVisible above - // are removed. - // - // Even more odd: both effects are seen with a 100% Java implementation - // of the above! - -?> |