From b549fc8820c5f1852f7563c933a88502b02cbb7d Mon Sep 17 00:00:00 2001 From: megacz Date: Fri, 30 Jan 2004 07:01:46 +0000 Subject: [PATCH] 2003/06/18 06:14:04 darcs-hash:20040130070146-2ba56-8d2164bcf37b2e9ea414f81d8ea43daea4d6e6d3.gz --- src/org/xwt/Box.java | 29 ++++++++++++++++++++++++++++- src/org/xwt/SpecialBoxProperty.java | 26 ++------------------------ 2 files changed, 30 insertions(+), 25 deletions(-) diff --git a/src/org/xwt/Box.java b/src/org/xwt/Box.java index c50ff7b..c3fec81 100644 --- a/src/org/xwt/Box.java +++ b/src/org/xwt/Box.java @@ -1504,4 +1504,31 @@ public final class Box extends JS.Scope { } - +/** this is in Box.java solely to work around a GCJ bug */ +class Apply extends JS.Callable { + Box b; + public Apply(Box b) { this.b = b; } + 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