1 52 53 package freemarker.core; 54 55 import java.io.IOException ; 56 57 61 final class FlushInstruction extends TemplateElement { 62 63 void accept(Environment env) throws IOException { 64 env.getOut().flush(); 65 } 66 67 public String getCanonicalForm() { 68 return "<#flush/>"; 69 } 70 71 public String getDescription() { 72 return "flush instruction"; 73 } 74 } 75 | Popular Tags |