2003/06/18 05:56:23
[org.ibex.core.git] / src / org / xwt / SpecialBoxProperty.java
index d55fd38..068d4a1 100644 (file)
@@ -655,33 +655,30 @@ class SpecialBoxProperty {
 
         specialBoxProperties.put("apply", new SpecialBoxProperty() {
                 public void put(Box b, Object value) { }
-                public Object get(final Box b) { return public Object call(JS.Array args) throws JS.Exn {
-                    
-                    // apply a template
-                    if (args.elementAt(0) instanceof String) {
-                        String templatename = (String)args.elementAt(0);
-                        Template t = Template.getTemplate(templatename, null);
-                        if (t == null) {
-                            if (Log.on) Log.logJS(this, "template " + templatename + " not found");
-                        } else {
-                            if (ThreadMessage.suspendThread()) try {
-                                JS.Callable callback = args.length() < 2 ? null : (Callable)args.elementAt(1);
-                                t.apply(b, null, null, callback, 0, t.numUnits());
-                            } finally {
-                                ThreadMessage.resumeThread();
+                public Object get(final Box b) { return new JS.Callable() {
+                        public Object call(JS.Array args) throws JS.Exn {
+                            if (args.elementAt(0) instanceof String) {
+                                String templatename = (String)args.elementAt(0);
+                                Template t = Template.getTemplate(templatename, null);
+                                if (t == null) {
+                                    if (Log.on) Log.logJS(this, "template " + templatename + " not found");
+                                } else {
+                                    if (ThreadMessage.suspendThread()) try {
+                                        JS.Callable callback = args.length() < 2 ? null : (Callable)args.elementAt(1);
+                                        t.apply(b, null, null, callback, 0, t.numUnits());
+                                    } finally {
+                                        ThreadMessage.resumeThread();
+                                    }
+                                }
+                                
+                            } else if (args.elementAt(0) instanceof JS && !(args.elementAt(0) instanceof Box)) {
+                                JS s = (JS)args.elementAt(0);
+                                Object[] keys = s.keys();
+                                for(int j=0; j<keys.length; j++) b.put(keys[j].toString(), s.get(keys[j]));
                             }
-                        }
-                        
-                        // apply a list of properties
-                    } else if (args.elementAt(0) instanceof JS && !(args.elementAt(0) instanceof Box)) {
-                        JS s = (JS)args.elementAt(0);
-                        Object[] keys = s.keys();
-                        for(int j=0; j<keys.length; j++) b.put(keys[j].toString(), s.get(keys[j]));
-                    }
-                    
-                    return b;
-                } }
-            });
+                            
+                            return b;
+                        } }; } });
         
         specialBoxProperties.put("id", new SpecialBoxProperty() {
                 public void put(Box b, Object value) { }