KickJava   Java API By Example, From Geeks To Geeks.

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


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 package org.netbeans.modules.xslt.model;
20
21
22 /**
23  * <pre>
24  * &lt;xs:element name="result-document" substitutionGroup="xsl:instruction">
25  * &lt;xs:complexType>
26  * &lt;xs:complexContent mixed="true">
27  * &lt;xs:extension base="xsl:sequence-constructor">
28  * &lt;xs:attribute name="format" type="xsl:avt"/>
29  * &lt;xs:attribute name="href" type="xsl:avt"/>
30  * &lt;xs:attribute name="type" type="xsl:QName"/>
31  * &lt;xs:attribute name="validation" type="xsl:validation-type"/>
32  * &lt;xs:attribute name="method" type="xsl:avt"/>
33  * &lt;xs:attribute name="byte-order-mark" type="xsl:avt"/>
34  * &lt;xs:attribute name="cdata-section-elements" type="xsl:avt"/>
35  * &lt;xs:attribute name="doctype-public" type="xsl:avt"/>
36  * &lt;xs:attribute name="doctype-system" type="xsl:avt"/>
37  * &lt;xs:attribute name="encoding" type="xsl:avt"/>
38  * &lt;xs:attribute name="escape-uri-attributes" type="xsl:avt"/>
39  * &lt;xs:attribute name="include-content-type" type="xsl:avt"/>
40  * &lt;xs:attribute name="indent" type="xsl:avt"/>
41  * &lt;xs:attribute name="media-type" type="xsl:avt"/>
42  * &lt;xs:attribute name="normalization-form" type="xsl:avt"/>
43  * &lt;xs:attribute name="omit-xml-declaration" type="xsl:avt"/>
44  * &lt;xs:attribute name="standalone" type="xsl:avt"/>
45  * &lt;xs:attribute name="undeclare-prefixes" type="xsl:avt"/>
46  * &lt;xs:attribute name="use-character-maps" type="xsl:QNames"/>
47  * &lt;xs:attribute name="output-version" type="xsl:avt"/>
48  * &lt;/xs:extension>
49  * &lt;/xs:complexContent>
50  * &lt;/xs:complexType>
51  * &lt;/xs:element>
52  * </pre>
53  * @author ads
54  *
55  */

56 public interface ResultDocument extends Instruction, SequenceConstructor, TypeSpec,
57     ValidationSpec, UseCharacterMapsSpec, FormatSpec
58 {
59     String JavaDoc STANDALONE = Output.STANDALONE;
60     
61     String JavaDoc UNDECLARE_PREFIXES = Output.UNDECLARE_PREFIXES;
62     
63     String JavaDoc HREF = XslModelReference.HREF;
64     
65     String JavaDoc METHOD = Output.METHOD;
66     
67     String JavaDoc INDENT = Output.INDENT;
68     
69     String JavaDoc ENCODING = Output.ENCODING;
70     
71     String JavaDoc BYTE_ORDER_MARK = Output.BYTE_ORDER_MARK;
72     
73     String JavaDoc CDATA_SECTION_ELEMENTS = Output.CDATA_SECTION_ELEMENTS;
74     
75     String JavaDoc DOCTYPE_PUBLIC = Output.DOCTYPE_PUBLIC;
76     
77     String JavaDoc DOCTYPE_SYSTEM = Output.DOCTYPE_SYSTEM;
78     
79     String JavaDoc ESCAPE_URI_ATTRIBUTES = Output.ESCAPE_URI_ATTRIBUTES;
80     
81     String JavaDoc INCLUDE_CONTENT_TYPE = Output.INCLUDE_CONTENT_TYPE;
82     
83     String JavaDoc MEDIA_TYPE = Output.MEDIA_TYPE;
84     
85     String JavaDoc NORMALIZATION_FORM = Output.NORMALIZATION_FORM;
86     
87     String JavaDoc OMIT_XML_DECLARATION = Output.OMIT_XML_DECLARATION;
88     
89     String JavaDoc OUTPUT_VERSION = "output-version"; // NOI18N
90

91     /**
92      * @return "standalone" attribute value
93      */

94     AttributeValueTemplate getStandalone();
95     
96     /**
97      * Set "standalone" attribute value.
98      * @param avt new value
99      */

100     void setStandalone( AttributeValueTemplate avt );
101     
102     /**
103      * @return "undeclare-prefixes" attribute value
104      */

105     AttributeValueTemplate getUndeclarePrefixes();
106     
107     /**
108      * Set "undeclare-prefixes" attribute value.
109      * @param avt new value
110      */

111     void setUndeclarePrefixes( AttributeValueTemplate avt );
112     
113     /**
114      * @return "href" attribute value
115      */

116     AttributeValueTemplate getHref();
117     
118     /**
119      * Set "href" attribute value.
120      * @param avt new value
121      */

122     void setHref( AttributeValueTemplate avt );
123     
124     /**
125      * @return "method" attribute value
126      */

127     AttributeValueTemplate getMethod();
128     
129     /**
130      * Set "method" attribute value.
131      * @param avt new value
132      */

133     void setMethod( AttributeValueTemplate avt );
134     
135     /**
136      * @return "indent" attribute value
137      */

138     AttributeValueTemplate getIndent();
139     
140     /**
141      * Set "indent" attribute value.
142      * @param avt new value
143      */

144     void setIndent( AttributeValueTemplate avt );
145     
146     /**
147      * @return "encoding" attribute value
148      */

149     AttributeValueTemplate getEncoding();
150     
151     /**
152      * Set "encoding" attribute value.
153      * @param avt new value
154      */

155     void setEncoding( AttributeValueTemplate avt );
156     
157 }
158
Popular Tags