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

  1. import java.io.PrintStream;
  2.  
  3. public abstract class JSbxProperty extends JSbxBase {
  4.    private JSbxObject aThisParentObj;
  5.    private String aName;
  6.  
  7.    public JSbxObject GetThisParentObj() {
  8.       return this.aThisParentObj;
  9.    }
  10.  
  11.    public void SetThisParentObj(JSbxObject var1) {
  12.       this.aThisParentObj = var1;
  13.    }
  14.  
  15.    public String GetName() {
  16.       return this.aName;
  17.    }
  18.  
  19.    public void SetName(String var1) {
  20.       new String(var1);
  21.    }
  22.  
  23.    protected JSbxProperty(String var1, JSbxObject var2) {
  24.       this.aName = var1;
  25.       this.aThisParentObj = var2;
  26.    }
  27.  
  28.    public abstract void Get(JSbxValue var1) throws JSbxException;
  29.  
  30.    public abstract void Put(JSbxValue var1) throws JSbxException;
  31.  
  32.    public abstract JSbxValue CallFunction(JScriptCallParam var1) throws JSbxExceptionBase;
  33.  
  34.    public abstract String GetJScript_typeofString();
  35.  
  36.    public abstract void Dump(PrintStream var1, int var2, int var3) throws JSbxException;
  37.  
  38.    public abstract String GetBrowserTypeInfo();
  39.  
  40.    public abstract String GetBrowserValueInfo();
  41.  
  42.    public abstract String GetBrowserInfo();
  43. }
  44.