home *** CD-ROM | disk | FTP | other *** search
- import java.io.PrintStream;
-
- public abstract class JSbxProperty extends JSbxBase {
- private JSbxObject aThisParentObj;
- private String aName;
-
- public JSbxObject GetThisParentObj() {
- return this.aThisParentObj;
- }
-
- public void SetThisParentObj(JSbxObject var1) {
- this.aThisParentObj = var1;
- }
-
- public String GetName() {
- return this.aName;
- }
-
- public void SetName(String var1) {
- new String(var1);
- }
-
- protected JSbxProperty(String var1, JSbxObject var2) {
- this.aName = var1;
- this.aThisParentObj = var2;
- }
-
- public abstract void Get(JSbxValue var1) throws JSbxException;
-
- public abstract void Put(JSbxValue var1) throws JSbxException;
-
- public abstract JSbxValue CallFunction(JScriptCallParam var1) throws JSbxExceptionBase;
-
- public abstract String GetJScript_typeofString();
-
- public abstract void Dump(PrintStream var1, int var2, int var3) throws JSbxException;
-
- public abstract String GetBrowserTypeInfo();
-
- public abstract String GetBrowserValueInfo();
-
- public abstract String GetBrowserInfo();
- }
-