1 28 29 package com.caucho.xsl.java; 30 31 import com.caucho.java.JavaWriter; 32 33 36 public class XslOtherwise extends XslNode { 37 40 public String getTagName() 41 { 42 return "xsl:otherwise"; 43 } 44 45 50 public void generate(JavaWriter out) 51 throws Exception  52 { 53 out.println("{"); 54 out.pushDepth(); 55 generateChildren(out); 56 out.popDepth(); 57 out.println("}"); 58 } 59 } 60 | Popular Tags |