示例#1
0
 public cn.bran.japid.template.RenderResult render(String s) {
   this.s = s;
   long t = -1;
   try {
     super.layout();
   } catch (RuntimeException e) {
     super.handleException(e);
   }
   return new cn.bran.japid.template.RenderResultPartial(getHeaders(), getOut(), t, actionRunners);
 }
示例#2
0
 public cn.bran.japid.template.RenderResult render(List<String> posts) {
   this.posts = posts;
   long t = -1;
   try {
     super.layout();
   } catch (RuntimeException e) {
     super.handleException(e);
   } // line 1
   return new cn.bran.japid.template.RenderResultPartial(
       getHeaders(), getOut(), t, actionRunners, sourceTemplate);
 }
示例#3
0
 public cn.bran.japid.template.RenderResult render(String msg, String m2, Integer age) {
   this.msg = msg;
   this.m2 = m2;
   this.age = age;
   long t = -1;
   try {
     super.layout();
   } catch (RuntimeException e) {
     super.handleException(e);
   } // line 1
   return new cn.bran.japid.template.RenderResultPartial(
       getHeaders(), getOut(), t, actionRunners, sourceTemplate);
 }