1 28 29 package com.caucho.jsp.java; 30 31 import com.caucho.vfs.WriteStream; 32 33 import java.io.IOException ; 34 35 38 public class JstlCoreOtherwise extends JstlNode { 39 44 public void printXml(WriteStream os) 45 throws IOException  46 { 47 os.print("<c:otherwise>"); 48 49 printXmlChildren(os); 50 51 os.print("</c:otherwise>"); 52 } 53 54 57 public void generate(JspJavaWriter out) 58 throws Exception  59 { 60 out.println("{"); 61 out.pushDepth(); 62 generateChildren(out); 63 64 out.popDepth(); 65 out.println("}"); 66 } 67 } 68 | Popular Tags |