01: /*
02: * The contents of this file are subject to the terms of the Common Development
03: * and Distribution License (the License). You may not use this file except in
04: * compliance with the License.
05: *
06: * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
07: * or http://www.netbeans.org/cddl.txt.
08: *
09: * 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: * The main categories of XSLT instruction are as follows:
24: * </p>
25: * <ul>
26: * <li>
27: * <p>
28: * instructions that create new nodes: <code>xsl:document</code>,
29: * <code>xsl:element</code>, <code>xsl:attribute</code>,
30: * <code>xsl:processing-instruction</code>, <code>xsl:comment</code></a>,
31: * <code>xsl:value-of</code>, <code>xsl:text</code>,
32: * <code>xsl:namespace</code>;
33: * </p>
34: * </li>
35: * <li>
36: * <p>
37: * an instruction that returns an arbitrary sequence by evaluating an XPath
38: * expression: <code>xsl:sequence</code>;
39: * </p>
40: * </li>
41: * <li>
42: * <p>
43: * instructions that cause conditional or repeated evaluation of nested
44: * instructions: <code>xsl:if</code>, <code>xsl:choose</code>,
45: * <code>xsl:for-each</code>, <code>xsl:for-each-group</code>;
46: * </p>
47: * </li>
48: * <li>
49: * <p>
50: * instructions that invoke templates: <code>xsl:apply-templates</code>,
51: * <code>xsl:apply-imports</code>, <code>xsl:call-template</code>,
52: * <code>xsl:next-match</code>;
53: * </p>
54: * </li>
55: * <li>
56: * <p>
57: * Instructions that declare variables: <code>xsl:variable</code>,
58: * <code>xsl:param</code>;
59: * </p>
60: * </li>
61: * <li>
62: * <p>
63: * other specialized instructions: <code>xsl:number</code>,
64: * <code>xsl:analyze-string</code>, <code>xsl:message</code>,
65: * <code>xsl:result-document</code>.
66: * </p>
67: * </li>
68: * </ul>
69: *
70: * @author ads
71: */
72:
73: public interface Instruction extends XslComponent, SequenceElement {
74:
75: }
|