KickJava   Java API By Example, From Geeks To Geeks.

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


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 JspConfig 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 JspConfig extends CommonDDBean, FindCapability, CreateCapability {
30         /** Setter for taglib element.
31          * @param index position in the array of elements
32          * @param valueInterface taglib element (Taglib object)
33          */

34     public void setTaglib(int index, org.netbeans.api.web.dd.Taglib valueInterface);
35         /** Getter for taglib element.
36          * @param index position in the array of elements
37          * @return taglib element (Taglib object)
38          */

39     public org.netbeans.api.web.dd.Taglib getTaglib(int index);
40         /** Setter for taglib elements.
41          * @param value array of taglib elements (Taglib objects)
42          */

43     public void setTaglib(org.netbeans.api.web.dd.Taglib[] value);
44         /** Getter for taglib elements.
45          * @return array of taglib elements (Taglib objects)
46          */

47     public org.netbeans.api.web.dd.Taglib[] getTaglib();
48         /** Returns number of taglib elements.
49          * @return number of taglib elements
50          */

51     public int sizeTaglib();
52         /** Adds taglib element.
53          * @param valueInterface taglib element (Taglib object)
54          * @return index of new taglib
55          */

56     public int addTaglib(org.netbeans.api.web.dd.Taglib valueInterface);
57         /** Removes taglib element.
58          * @param valueInterface taglib element (Taglib object)
59          * @return index of the removed taglib
60          */

61     public int removeTaglib(org.netbeans.api.web.dd.Taglib valueInterface);
62         /** Setter for jsp-property-group element.
63          * @param index position in the array of elements
64          * @param valueInterface jsp-property-group element (JspPropertyGroup object)
65          */

66     public void setJspPropertyGroup(int index, org.netbeans.api.web.dd.JspPropertyGroup valueInterface);
67         /** Getter for jsp-property-group element.
68          * @param index position in the array of elements
69          * @return jsp-property-group element (JspPropertyGroup object)
70          */

71     public org.netbeans.api.web.dd.JspPropertyGroup getJspPropertyGroup(int index);
72         /** Setter for jsp-property-group elements.
73          * @param value array of jsp-property-group elements (JspPropertyGroup objects)
74          */

75     public void setJspPropertyGroup(org.netbeans.api.web.dd.JspPropertyGroup[] value);
76         /** Getter for jsp-property-group elements.
77          * @return array of jsp-property-group elements (JspPropertyGroup objects)
78          */

79     public org.netbeans.api.web.dd.JspPropertyGroup[] getJspPropertyGroup();
80         /** Returns number of jsp-property-group elements.
81          * @return number of jsp-property-group elements
82          */

83     public int sizeJspPropertyGroup();
84         /** Adds jsp-property-group element.
85          * @param valueInterface jsp-property-group element (JspPropertyGroup object)
86          * @return index of new jsp-property-group
87          */

88     public int addJspPropertyGroup(org.netbeans.api.web.dd.JspPropertyGroup valueInterface);
89         /** Removes jsp-property-group element.
90          * @param valueInterface jsp-property-group element (JspPropertyGroup object)
91          * @return index of the removed jsp-property-group
92          */

93     public int removeJspPropertyGroup(org.netbeans.api.web.dd.JspPropertyGroup valueInterface);
94
95 }
96
Popular Tags