2
|
1 |
/*
|
5506
|
2 |
* Copyright (c) 1998, 2000, Oracle and/or its affiliates. All rights reserved.
|
2
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
5506
|
7 |
* published by the Free Software Foundation. Oracle designates this
|
2
|
8 |
* particular file as subject to the "Classpath" exception as provided
|
5506
|
9 |
* by Oracle in the LICENSE file that accompanied this code.
|
2
|
10 |
*
|
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
15 |
* accompanied this code).
|
|
16 |
*
|
|
17 |
* You should have received a copy of the GNU General Public License version
|
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
20 |
*
|
5506
|
21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
22 |
* or visit www.oracle.com if you need additional information or have any
|
|
23 |
* questions.
|
2
|
24 |
*/
|
|
25 |
package javax.swing;
|
|
26 |
|
|
27 |
/**
|
|
28 |
* A mutable version of <code>ComboBoxModel</code>.
|
|
29 |
*
|
9665
|
30 |
* @param <E> the type of the elements of this model
|
|
31 |
*
|
2
|
32 |
* @author Tom Santos
|
|
33 |
*/
|
|
34 |
|
9665
|
35 |
public interface MutableComboBoxModel<E> extends ComboBoxModel<E> {
|
2
|
36 |
|
|
37 |
/**
|
|
38 |
* Adds an item at the end of the model. The implementation of this method
|
|
39 |
* should notify all registered <code>ListDataListener</code>s that the
|
|
40 |
* item has been added.
|
|
41 |
*
|
9665
|
42 |
* @param item the item to be added
|
2
|
43 |
*/
|
9665
|
44 |
public void addElement( E item );
|
2
|
45 |
|
|
46 |
/**
|
|
47 |
* Removes an item from the model. The implementation of this method should
|
|
48 |
* should notify all registered <code>ListDataListener</code>s that the
|
|
49 |
* item has been removed.
|
|
50 |
*
|
|
51 |
* @param obj the <code>Object</code> to be removed
|
|
52 |
*/
|
|
53 |
public void removeElement( Object obj );
|
|
54 |
|
|
55 |
/**
|
|
56 |
* Adds an item at a specific index. The implementation of this method
|
|
57 |
* should notify all registered <code>ListDataListener</code>s that the
|
|
58 |
* item has been added.
|
|
59 |
*
|
9665
|
60 |
* @param item the item to be added
|
2
|
61 |
* @param index location to add the object
|
|
62 |
*/
|
9665
|
63 |
public void insertElementAt( E item, int index );
|
2
|
64 |
|
|
65 |
/**
|
|
66 |
* Removes an item at a specific index. The implementation of this method
|
|
67 |
* should notify all registered <code>ListDataListener</code>s that the
|
|
68 |
* item has been removed.
|
|
69 |
*
|
9665
|
70 |
* @param index location of the item to be removed
|
2
|
71 |
*/
|
|
72 |
public void removeElementAt( int index );
|
|
73 |
}
|