KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > api > web > dd > JspPropertyGroup


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-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19
20 package org.netbeans.api.web.dd;
21 import org.netbeans.api.web.dd.common.*;
22 /**
23  * Generated interface for JspPropertyGroup element.
24  *
25  *<p><b><font color="red"><em>Important note: Do not provide an implementation of this interface unless you are a DD API provider!</em></font></b>
26  *</p>
27  * @deprecated Use the API for web module deployment descriptor in j2ee/ddapi module.
28  */

29 public interface JspPropertyGroup extends CommonDDBean, ComponentInterface {
30         /** Setter for url-pattern property.
31          * @param index position in the array of url-patterns
32          * @param value property value
33          */

34     public void setUrlPattern(int index, java.lang.String JavaDoc value);
35         /** Getter for url-pattern property.
36          * @param index position in the array of url-patterns
37          * @return property value
38          */

39     public java.lang.String JavaDoc getUrlPattern(int index);
40         /** Setter for url-pattern property.
41          * @param index position in the array of url-patterns
42          * @param value array of url-pattern properties
43          */

44     public void setUrlPattern(java.lang.String JavaDoc[] value);
45         /** Getter for url-pattern property.
46          * @return array of url-pattern properties
47          */

48     public java.lang.String JavaDoc[] getUrlPattern();
49         /** Returns number of url-pattern properties.
50          * @return number of url-pattern properties
51          */

52     public int sizeUrlPattern();
53         /** Adds url-pattern property.
54          * @param value url-pattern property
55          * @return index of new url-pattern
56          */

57     public int addUrlPattern(java.lang.String JavaDoc value);
58         /** Removes url-pattern property.
59          * @param value url-pattern property
60          * @return index of the removed url-pattern
61          */

62     public int removeUrlPattern(java.lang.String JavaDoc value);
63         /** Setter for el-ignored property.
64          * @param value property value
65          */

66     public void setElIgnored(boolean value);
67         /** Getter for el-ignored property.
68          * @return property value
69          */

70     public boolean isElIgnored();
71         /** Setter for page-encoding property.
72          * @param value property value
73          */

74     public void setPageEncoding(java.lang.String JavaDoc value);
75         /** Getter for page-encoding property.
76          * @return property value
77          */

78     public java.lang.String JavaDoc getPageEncoding();
79         /** Setter for scripting-invalid property.
80          * @param value property value
81          */

82     public void setScriptingInvalid(boolean value);
83         /** Getter for scripting-invalid property.
84          * @return property value
85          */

86     public boolean isScriptingInvalid();
87         /** Setter for is-xml property.
88          * @param value property value
89          */

90     public void setIsXml(boolean value);
91         /** Getter for is-xml property.
92          * @return property value
93          */

94     public boolean isIsXml();
95         /** Setter for include-prelude property.
96          * @param index position in the array of include-preludes
97          * @param value property value
98          */

99     public void setIncludePrelude(int index, java.lang.String JavaDoc value);
100         /** Getter for include-prelude property.
101          * @param index position in the array of include-preludes
102          * @return property value
103          */

104     public java.lang.String JavaDoc getIncludePrelude(int index);
105         /** Setter for include-prelude property.
106          * @param index position in the array of include-preludes
107          * @param value array of include-prelude properties
108          */

109     public void setIncludePrelude(java.lang.String JavaDoc[] value);
110         /** Getter for include-prelude property.
111          * @return array of include-prelude properties
112          */

113     public java.lang.String JavaDoc[] getIncludePrelude();
114         /** Returns number of include-prelude properties.
115          * @return number of include-prelude properties
116          */

117     public int sizeIncludePrelude();
118         /** Adds include-prelude property.
119          * @param value include-prelude property
120          * @return index of new include-prelude
121          */

122     public int addIncludePrelude(java.lang.String JavaDoc value);
123         /** Removes include-prelude property.
124          * @param value include-prelude property
125          * @return index of the removed include-prelude
126          */

127     public int removeIncludePrelude(java.lang.String JavaDoc value);
128         /** Setter for include-coda property.
129          * @param index position in the array of include-codas
130          * @param value property value
131          */

132     public void setIncludeCoda(int index, java.lang.String JavaDoc value);
133         /** Getter for include-coda property.
134          * @param index position in the array of include-codas
135          * @return property value
136          */

137     public java.lang.String JavaDoc getIncludeCoda(int index);
138         /** Setter for include-coda property.
139          * @param index position in the array of include-codas
140          * @param value array of include-coda properties
141          */

142     public void setIncludeCoda(java.lang.String JavaDoc[] value);
143         /** Getter for include-coda property.
144          * @return array of include-coda properties
145          */

146     public java.lang.String JavaDoc[] getIncludeCoda();
147         /** Returns number of include-coda properties.
148          * @return number of include-coda properties
149          */

150     public int sizeIncludeCoda();
151         /** Adds include-coda property.
152          * @param value include-coda property
153          * @return index of new include-coda
154          */

155     public int addIncludeCoda(java.lang.String JavaDoc value);
156         /** Removes include-coda property.
157          * @param value include-coda property
158          * @return index of the removed include-coda
159          */

160     public int removeIncludeCoda(java.lang.String JavaDoc value);
161
162 }
163
Popular Tags