KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > dd > api > web > 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.modules.j2ee.dd.api.web;
21 import org.netbeans.modules.j2ee.dd.api.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  */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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