1 52 53 package freemarker.template; 54 55 import java.io.IOException ; 56 57 70 public interface TransformControl 71 { 72 77 public static final int REPEAT_EVALUATION = 0; 78 79 83 public static final int END_EVALUATION = 1; 84 85 89 public static final int SKIP_BODY = 0; 90 91 95 public static final int EVALUATE_BODY = 1; 96 97 107 public int onStart() throws TemplateModelException, IOException ; 108 109 118 public int afterBody() throws TemplateModelException, IOException ; 119 120 135 public void onError(Throwable t) throws Throwable ; 136 } 137 | Popular Tags |