home *** CD-ROM | disk | FTP | other *** search
- public abstract class JSbxMethod extends JSbxObject implements JSbxPropertyInterface {
- JSbxObject aMethodThisObj;
-
- public JSbxMethod(JScriptConstructor var1) {
- super(var1);
- }
-
- public abstract JSbxValue CallFunction(JScriptCallParam var1) throws JSbxExceptionBase;
-
- public JSbxValue PropertyCallFunction(JSbxObjectProperty var1, JScriptCallParam var2) throws JSbxExceptionBase {
- return null;
- }
-
- public void PropertyGet(JSbxObjectProperty var1, JSbxValue var2) throws JSbxException {
- }
-
- public void PropertyPut(JSbxObjectProperty var1, JSbxValue var2) throws JSbxException {
- }
-
- public String Property_GetJScript_typeofString(JSbxObjectProperty var1) {
- return "function";
- }
-
- public String GetJScript_typeofString() {
- return "function";
- }
- }
-