home *** CD-ROM | disk | FTP | other *** search
- import java.applet.Applet;
- import java.io.FileNotFoundException;
- import stardiv.classfile.ClassFormatException;
-
- public class JScriptAppletObject extends JScriptJavaObject {
- private static final String NAME = "applet";
-
- public JScriptAppletObject(Applet var1, String var2) throws ClassNotFoundException, ClassFormatException, FileNotFoundException {
- super(var1);
-
- try {
- ((JSbxObject)this).Put(new JSbxValueProperty("name", this, new JSbxValue(var2), true, false));
- } catch (JSbxException var3) {
- }
- }
-
- public String GetJScriptString(boolean var1) {
- return "applet";
- }
- }
-