2003/11/13 09:15:11
[org.ibex.core.git] / src / org / xwt / Res.java
index df0813f..53da6ff 100644 (file)
@@ -171,6 +171,7 @@ public abstract class Res extends JS {
     public static class Ref extends Res {
         Res parent;
         Object key;
+        public String toString() { return parent.toString() + "/" + key; }
         Ref(Res parent, Object key) { this.parent = parent; this.key = key; }
         public String getCacheKey() throws NotCacheableException { return parent.getCacheKey() + "/" + key; }
         public Res addExtension(String extension) {