home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1997 August / PCO0897.ISO / filesbbs / os2 / fp1os2.arj / OS2 / DATA / 49 / C / 0 / F_26836 / JScriptPluginObject.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-05-15  |  1.2 KB  |  28 lines

  1. public class JScriptPluginObject extends JSbxObject implements JSbxPropertyInterface {
  2.    private static final String NAME = "plugin";
  3.  
  4.    public JScriptPluginObject(long var1) {
  5.       super(var1, JScriptManager.GetConstructorObjectForMe("DefaultConstructor"));
  6.    }
  7.  
  8.    public JSbxValue PropertyCallFunction(JSbxObjectProperty var1, JScriptCallParam var2) throws JSbxExceptionBase {
  9.       throw new JSbxException(0, "no such method in plugin");
  10.    }
  11.  
  12.    public void PropertyGet(JSbxObjectProperty var1, JSbxValue var2) throws JSbxException {
  13.       throw new JSbxException(0, "no such property in plugin");
  14.    }
  15.  
  16.    public void PropertyPut(JSbxObjectProperty var1, JSbxValue var2) throws JSbxException {
  17.       throw new JSbxException(0, "no such property in plugin");
  18.    }
  19.  
  20.    public String Property_GetJScript_typeofString(JSbxObjectProperty var1) {
  21.       return "plugin";
  22.    }
  23.  
  24.    public String GetJScriptString(boolean var1) {
  25.       return "plugin";
  26.    }
  27. }
  28.