freemind.controller.filter.util
Interface SortedListModel
- All Superinterfaces:
- javax.swing.ListModel
- All Known Implementing Classes:
- SortedComboBoxModel, SortedMapListModel
public interface SortedListModel
- extends javax.swing.ListModel
- Author:
- Dimitri Polivaev
18.06.2005
Method Summary |
void |
add(java.lang.Object o)
|
void |
clear()
|
boolean |
contains(java.lang.Object o)
|
int |
getIndexOf(java.lang.Object o)
|
void |
remove(java.lang.Object o)
|
void |
replace(java.lang.Object oldO,
java.lang.Object newO)
|
Methods inherited from interface javax.swing.ListModel |
addListDataListener, getElementAt, getSize, removeListDataListener |
clear
void clear()
contains
boolean contains(java.lang.Object o)
add
void add(java.lang.Object o)
replace
void replace(java.lang.Object oldO,
java.lang.Object newO)
remove
void remove(java.lang.Object o)
getIndexOf
int getIndexOf(java.lang.Object o)