1 16 19 package org.apache.xalan.templates; 20 21 import org.apache.xpath.XPathVisitor; 22 23 30 public class XSLTVisitor extends XPathVisitor 31 { 32 39 public boolean visitInstruction(ElemTemplateElement elem) 40 { 41 return true; 42 } 43 44 50 public boolean visitStylesheet(ElemTemplateElement elem) 51 { 52 return true; 53 } 54 55 56 62 public boolean visitTopLevelInstruction(ElemTemplateElement elem) 63 { 64 return true; 65 } 66 67 73 public boolean visitTopLevelVariableOrParamDecl(ElemTemplateElement elem) 74 { 75 return true; 76 } 77 78 79 85 public boolean visitVariableOrParamDecl(ElemVariable elem) 86 { 87 return true; 88 } 89 90 96 public boolean visitLiteralResultElement(ElemLiteralResult elem) 97 { 98 return true; 99 } 100 101 109 public boolean visitAVT(AVT elem) 110 { 111 return true; 112 } 113 114 115 120 public boolean visitExtensionElement(ElemExtensionCall elem) 121 { 122 return true; 123 } 124 125 } 126 127 | Popular Tags |