Commit d150822e by Mark Wielaard Committed by Mark Wielaard

* java/bean/Beans.java (instantiate): enable Applet code from Classpath

From-SVN: r39105
parent 9ca4a2fd
2001-01-17 Mark Wielaard <mark@klomp.org>
* java/bean/Beans.java (instantiate): enable Applet code from Classpath
2001-01-17 Bryce McKinlay <bryce@albatross.co.nz> 2001-01-17 Bryce McKinlay <bryce@albatross.co.nz>
* java/lang/Class.h (isInterface): Move implementation from * java/lang/Class.h (isInterface): Move implementation from
......
...@@ -28,7 +28,7 @@ executable file might be covered by the GNU General Public License. */ ...@@ -28,7 +28,7 @@ executable file might be covered by the GNU General Public License. */
package java.beans; package java.beans;
import java.io.*; import java.io.*;
// import java.applet.*; import java.applet.*;
import gnu.java.io.*; import gnu.java.io.*;
/** /**
...@@ -116,16 +116,14 @@ public class Beans { ...@@ -116,16 +116,14 @@ public class Beans {
} }
} }
/* FIXME - Turned off since java.applet doesn't exist for libgcj. if(bean instanceof Applet) {
* FIXME if(bean instanceof Applet) { Applet a = (Applet)bean;
* FIXME Applet a = (Applet)bean; //a.setAppletContext(???);
* FIXME //a.setAppletContext(???); //a.setStub(???);
* FIXME //a.setStub(???); if(serStream == null) {
* FIXME if(serStream == null) { a.init();
* FIXME a.init(); }
* FIXME } }
* FIXME }
* FIXME ********************************************************/
return bean; return bean;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment