Esempio n. 1
0
 public cn.bran.japid.template.RenderResult render() {
   long t = -1;
   try {
     super.layout();
   } catch (RuntimeException e) {
     super.handleException(e);
   }
   return new cn.bran.japid.template.RenderResultPartial(
       getHeaders(), getOut(), t, actionRunners, sourceTemplate);
 }
Esempio n. 2
0
 public cn.bran.japid.template.RenderResult render(String hello) {
   this.hello = hello;
   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);
 }