1 19 20 package org.netbeans.modules.xslt.model; 21 22 23 24 28 public interface XslVisitor { 29 30 34 void visit( ApplyTemplates applyTemplates ); 35 36 40 void visit( Attribute attribute); 41 42 46 void visit( AttributeSet attributeSet ); 47 48 49 53 void visit( CallTemplate callTemplate ); 54 55 59 void visit( Choose choose ); 60 61 65 void visit( Copy copy ); 66 67 71 void visit( CopyOf copyOf ); 72 73 77 void visit( Document document ); 78 79 83 void visit( Element element ); 84 85 89 void visit( ForEach forEach ); 90 91 95 void visit( If iff ); 96 97 101 void visit( Import impt ); 102 103 107 void visit( Include include ); 108 109 113 void visit( Key key ); 114 115 119 void visit( LiteralResultElement element ); 120 121 125 void visit( Namespace namespace ); 126 127 131 void visit( Number number ); 132 133 137 void visit( Otherwise otherwise ); 138 139 143 void visit( Output output ); 144 145 149 void visit( Param param ); 150 151 155 void visit( Sequence sequence ); 156 157 161 void visit( Sort sort ); 162 163 167 void visit( Stylesheet stylesheet ); 168 169 173 void visit( Template template ); 174 175 179 void visit( Text text ); 180 181 185 void visit( ValueOf valueOf ); 186 187 191 void visit( Variable variable ); 192 193 197 void visit( When when ); 198 199 203 void visit( ApplyImports impt ); 204 205 } 206 | Popular Tags |