KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > dd > api > web > LocaleEncodingMappingList


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 LocaleEncodingMappingList 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 LocaleEncodingMappingList extends CommonDDBean, CreateCapability, FindCapability {
29         /** Setter for locale-encoding-mapping element.
30          * @param index position in the array of elements
31          * @param valueInterface locale-encoding-mapping element (LocaleEncodingMapping object)
32          */

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

38     public org.netbeans.modules.j2ee.dd.api.web.LocaleEncodingMapping getLocaleEncodingMapping(int index);
39         /** Setter for locale-encoding-mapping elements.
40          * @param value array of locale-encoding-mapping elements (LocaleEncodingMapping objects)
41          */

42     public void setLocaleEncodingMapping(org.netbeans.modules.j2ee.dd.api.web.LocaleEncodingMapping[] value);
43         /** Getter for locale-encoding-mapping elements.
44          * @return array of locale-encoding-mapping elements (LocaleEncodingMapping objects)
45          */

46     public org.netbeans.modules.j2ee.dd.api.web.LocaleEncodingMapping[] getLocaleEncodingMapping();
47         /** Returns size of locale-encoding-mapping elements.
48          * @return number of locale-encoding-mapping elements
49          */

50     public int sizeLocaleEncodingMapping();
51         /** Adds locale-encoding-mapping element.
52          * @param valueInterface locale-encoding-mapping element (LocaleEncodingMapping object)
53          * @return index of new locale-encoding-mapping
54          */

55     public int addLocaleEncodingMapping(org.netbeans.modules.j2ee.dd.api.web.LocaleEncodingMapping valueInterface);
56         /** Removes locale-encoding-mapping element.
57          * @param valueInterface locale-encoding-mapping element (LocaleEncodingMapping object)
58          * @return index of the removed locale-encoding-mapping
59          */

60     public int removeLocaleEncodingMapping(org.netbeans.modules.j2ee.dd.api.web.LocaleEncodingMapping valueInterface);
61
62 }
63
Popular Tags