KickJava   Java API By Example, From Geeks To Geeks.

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

28 public interface JspConfig extends CommonDDBean, FindCapability, CreateCapability {
29         /** Setter for taglib element.
30          * @param index position in the array of elements
31          * @param valueInterface taglib element (Taglib object)
32          */

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

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

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

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

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

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

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

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

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

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

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

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

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

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