home *** CD-ROM | disk | FTP | other *** search
- public class JScriptPluginObject extends JSbxObject implements JSbxPropertyInterface {
- private static final String NAME = "plugin";
-
- public JScriptPluginObject(long var1) {
- super(var1, JScriptManager.GetConstructorObjectForMe("DefaultConstructor"));
- }
-
- public JSbxValue PropertyCallFunction(JSbxObjectProperty var1, JScriptCallParam var2) throws JSbxExceptionBase {
- throw new JSbxException(0, "no such method in plugin");
- }
-
- public void PropertyGet(JSbxObjectProperty var1, JSbxValue var2) throws JSbxException {
- throw new JSbxException(0, "no such property in plugin");
- }
-
- public void PropertyPut(JSbxObjectProperty var1, JSbxValue var2) throws JSbxException {
- throw new JSbxException(0, "no such property in plugin");
- }
-
- public String Property_GetJScript_typeofString(JSbxObjectProperty var1) {
- return "plugin";
- }
-
- public String GetJScriptString(boolean var1) {
- return "plugin";
- }
- }
-