KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > xslt > model > XslComponentFactory


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.modules.xslt.model;
21
22 import org.netbeans.modules.xml.xam.dom.ComponentFactory;
23
24
25 /**
26  * Factory for Xsl components.
27  *
28  * @author ads
29  *
30  */

31 public interface XslComponentFactory extends ComponentFactory<XslComponent> {
32     
33     /**
34      * @return instantiated "apply-templates" component.
35      */

36     ApplyTemplates createApplyTemplates();
37     
38     /**
39      * @return instantiated "attribute" component.
40      */

41     Attribute createAttribute();
42     
43     /**
44      * @return instantiated "attribute-set" component.
45      */

46     AttributeSet createAttributeSet();
47     
48     /**
49      * @return instantiated "call-template" component.
50      */

51     CallTemplate createCallTemplate();
52     
53     /**
54      * @return instantiated "choose" component.
55      */

56     Choose createChoose();
57     
58     /**
59      * @return instantiated "copy" component.
60      */

61     Copy createCopy();
62     
63     /**
64      * @return instantiated "copy-of" component.
65      */

66     CopyOf createCopyOf();
67     
68     /**
69      * @return instantiated "document" component.
70      */

71     Document createDocument();
72     
73     /**
74      * @return instantiated "element" component.
75      */

76     Element createElement();
77     
78     /**
79      * @return instantiated "for-each" component.
80      */

81     ForEach createForEach();
82     
83     /**
84      * @return instantiated "if" component.
85      */

86     If createIf();
87     
88     /**
89      * @return instantiated "import" component.
90      */

91     Import createImport();
92     
93     /**
94      * @return instantiated "include" component.
95      */

96     Include createInclude();
97     
98     /**
99      * @return instantiated "key" component.
100      */

101     Key createKey();
102     
103     /**
104      * @return instantiated non-xslt element result compoenent.
105      */

106     LiteralResultElement createLiteralResultElement( String JavaDoc name ,
107             String JavaDoc namespaceUri);
108     
109     /**
110      * @return instantiated "namespace" component.
111      */

112     Namespace createNamespace();
113     
114     /**
115      * @return instantiated "number" component.
116      */

117     Number JavaDoc createNumber();
118     
119     /**
120      * @return instantiated "otherwise" component.
121      */

122     Otherwise createOtherwise();
123     
124     /**
125      * @return instantiated "output" component.
126      */

127     Output createOutput();
128     
129     /**
130      * @return instantiated "param" component.
131      */

132     Param createParam();
133     
134     /**
135      * @return instantiated "sequence" component.
136      */

137     Sequence createSequence();
138     
139     /**
140      * @return instantiated "sort" component.
141      */

142     Sort createSort();
143     
144     /**
145      * @return instantiated "stylesheet" component.
146      */

147     Stylesheet createStylesheet();
148     
149     /**
150      * @return instantiated "template" component.
151      */

152     Template createTemplate();
153     
154     /**
155      * @return instantiated "text" component.
156      */

157     Text createText();
158     
159     /**
160      * @return instantiated "value-of" component.
161      */

162     ValueOf createValueOf();
163     
164     /**
165      * @return instantiated "variable" component.
166      */

167     Variable createVariable();
168     
169     /**
170      * @return instantiated "when" component.
171      */

172     When createWhen();
173     
174 }
175
Popular Tags