public static DataProxy newBoolean(String name, boolean val) {
   DataProxy d = new DataProxy(name);
   d.curBool = val;
   d.type = PrimitiveOrString.BOOLEAN;
   return d;
 }