2002/07/15 23:21:37
[org.ibex.core.git] / src / org / xwt / util / JSObject.java
index ab747e2..2866d60 100644 (file)
@@ -193,6 +193,12 @@ public class JSObject implements Scriptable {
 
     }
 
+    // Helper class for defining functions. //////////////////////////////////////
+
+    public static abstract class JSFunction extends JSObject implements Function {
+        JSFunction() { setSeal(true); }
+        public Scriptable construct(Context cx, Scriptable scope, java.lang.Object[] args) { return null; }
+    }
 
     // Trivial Methods ///////////////////////////////////////////////////////////