2004/01/19 05:24:56
[org.ibex.core.git] / src / org / xwt / XWT.java
index 1076de0..d792776 100644 (file)
@@ -17,7 +17,7 @@ public final class XWT extends JS.Cloneable {
     private final JS rr;
     public XWT(Stream rr) { this.rr = bless(rr); }
 
-    public JS resolveStringToResource(String str, boolean permitAbsolute) throws JSExn {
+    public JS resolveString(String str, boolean permitAbsolute) throws JSExn {
         if (str.indexOf("://") != -1) {
             if (permitAbsolute) return (Stream)url2res(str);
             throw new JSExn("absolute URL " + str + " not permitted here");