KickJava   Java API By Example, From Geeks To Geeks.

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


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
23 /**
24  * The main categories of XSLT instruction are as follows:
25  * </p>
26  * <ul>
27  * <li>
28  * <p>
29  * instructions that create new nodes: <code>xsl:document</code>,
30  * <code>xsl:element</code>, <code>xsl:attribute</code>,
31  * <code>xsl:processing-instruction</code>, <code>xsl:comment</code></a>,
32  * <code>xsl:value-of</code>, <code>xsl:text</code>,
33  * <code>xsl:namespace</code>;
34  * </p>
35  * </li>
36  * <li>
37  * <p>
38  * an instruction that returns an arbitrary sequence by evaluating an XPath
39  * expression: <code>xsl:sequence</code>;
40  * </p>
41  * </li>
42  * <li>
43  * <p>
44  * instructions that cause conditional or repeated evaluation of nested
45  * instructions: <code>xsl:if</code>, <code>xsl:choose</code>,
46  * <code>xsl:for-each</code>, <code>xsl:for-each-group</code>;
47  * </p>
48  * </li>
49  * <li>
50  * <p>
51  * instructions that invoke templates: <code>xsl:apply-templates</code>,
52  * <code>xsl:apply-imports</code>, <code>xsl:call-template</code>,
53  * <code>xsl:next-match</code>;
54  * </p>
55  * </li>
56  * <li>
57  * <p>
58  * Instructions that declare variables: <code>xsl:variable</code>,
59  * <code>xsl:param</code>;
60  * </p>
61  * </li>
62  * <li>
63  * <p>
64  * other specialized instructions: <code>xsl:number</code>,
65  * <code>xsl:analyze-string</code>, <code>xsl:message</code>,
66  * <code>xsl:result-document</code>.
67  * </p>
68  * </li>
69  * </ul>
70  *
71  * @author ads
72  */

73
74 public interface Instruction extends XslComponent, SequenceElement {
75
76 }
77
Popular Tags