Ejemplo n.º 1
0
 private Object get_(R r, String key) {
   try {
     return r.r(key);
   } catch (Exception e) {
     Outside.err(this, "get_(R,String)", e);
   }
   return null;
 }
Ejemplo n.º 2
0
  public Object t(Object obj) throws Exception {
    Object[] o = (Object[]) obj;
    if (o.length != 2) throw new Exception("Wrong data number: " + o.length);

    R mr = (R) o[0];
    String info = (String) o[1];

    Map paramsPost = (Map) mr.r("params_post");
    return "" + paramsPost.containsKey(info);
  }