1 19 20 package org.netbeans.modules.xslt.model; 21 22 import org.netbeans.modules.xml.xam.dom.ComponentFactory; 23 24 25 31 public interface XslComponentFactory extends ComponentFactory<XslComponent> { 32 33 36 ApplyTemplates createApplyTemplates(); 37 38 41 Attribute createAttribute(); 42 43 46 AttributeSet createAttributeSet(); 47 48 51 CallTemplate createCallTemplate(); 52 53 56 Choose createChoose(); 57 58 61 Copy createCopy(); 62 63 66 CopyOf createCopyOf(); 67 68 71 Document createDocument(); 72 73 76 Element createElement(); 77 78 81 ForEach createForEach(); 82 83 86 If createIf(); 87 88 91 Import createImport(); 92 93 96 Include createInclude(); 97 98 101 Key createKey(); 102 103 106 LiteralResultElement createLiteralResultElement( String name , 107 String namespaceUri); 108 109 112 Namespace createNamespace(); 113 114 117 Number createNumber(); 118 119 122 Otherwise createOtherwise(); 123 124 127 Output createOutput(); 128 129 132 Param createParam(); 133 134 137 Sequence createSequence(); 138 139 142 Sort createSort(); 143 144 147 Stylesheet createStylesheet(); 148 149 152 Template createTemplate(); 153 154 157 Text createText(); 158 159 162 ValueOf createValueOf(); 163 164 167 Variable createVariable(); 168 169 172 When createWhen(); 173 174 } 175 | Popular Tags |