2003/10/16 18:37:27
[org.ibex.core.git] / src / org / xwt / Template.java
index a180bf9..e7e72b5 100644 (file)
@@ -351,15 +351,15 @@ public class Template {
         }
         public boolean isTransparent() { return true; }
         public Object get(Object key) {
+            if (super.has(key)) return super.get(key);
             if (key.equals("xwt")) return xwt;
             if (key.equals("static")) return myStatic;
             if (Box.SpecialBoxProperty.specialBoxProperties.get(key.toString()) != null) return getParentScope().get(key);
-            if (super.has(key)) return super.get(key);
             throw new JS.Exn("must declare " + key + " before using it!");
         }
         public void put(Object key, Object val) {
-            if (Box.SpecialBoxProperty.specialBoxProperties.get(key.toString()) != null) getParentScope().put(key, val);
-            else if (super.has(key)) super.put(key, val);
+            if (super.has(key)) super.put(key, val);
+            else if (Box.SpecialBoxProperty.specialBoxProperties.get(key.toString()) != null) getParentScope().put(key, val);
             else throw new JS.Exn("must declare " + key + " before using it!");
         }
     }