Class MetalFileChooserUI.FilterComboBoxModel
- All Implemented Interfaces:
-
PropertyChangeListener,Serializable,EventListener,ComboBoxModel<Object>,ListModel<Object>
- Enclosing class:
- MetalFileChooserUI
protected class MetalFileChooserUI.FilterComboBoxModel extends AbstractListModel<Object> implements ComboBoxModel<Object>, PropertyChangeListener
Data model for a type-face selection combo-box.
Field Summary
| Modifier and Type | Field | Description |
|---|---|---|
protected FileFilter[] |
filters |
An array of file filters. |
Fields declared in class javax.swing.AbstractListModel
listenerList
Constructor Summary
| Modifier | Constructor | Description |
|---|---|---|
protected |
Constructs an instance of FilterComboBoxModel. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
Object |
getElementAt |
Returns the value at the specified index. |
Object |
getSelectedItem() |
Returns the selected item |
int |
getSize() |
Returns the length of the list. |
void |
propertyChange |
This method gets called when a bound property is changed. |
void |
setSelectedItem |
Set the selected item. |
Methods declared in class javax.swing.AbstractListModel
addListDataListener, fireContentsChanged, fireIntervalAdded, fireIntervalRemoved, getListDataListeners, getListeners, removeListDataListener
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface javax.swing.ListModel
addListDataListener, removeListDataListener
Field Details
filters
protected FileFilter[] filters
An array of file filters.
Constructor Details
FilterComboBoxModel
protected FilterComboBoxModel()
Constructs an instance of
FilterComboBoxModel.Method Details
propertyChange
public void propertyChange(PropertyChangeEvent e)
Description copied from interface:
PropertyChangeListenerThis method gets called when a bound property is changed.
- Specified by:
-
propertyChangein interfacePropertyChangeListener - Parameters:
-
e- A PropertyChangeEvent object describing the event source and the property that has changed.
setSelectedItem
public void setSelectedItem(Object filter)
Description copied from interface:
ComboBoxModelSet the selected item. The implementation of this method should notify all registered
ListDataListeners that the contents have changed.- Specified by:
-
setSelectedItemin interfaceComboBoxModel<Object> - Parameters:
-
filter- the list object to select ornullto clear the selection
getSelectedItem
public Object getSelectedItem()
Description copied from interface:
ComboBoxModelReturns the selected item
- Specified by:
-
getSelectedItemin interfaceComboBoxModel<Object> - Returns:
- The selected item or
nullif there is no selection
getSize
public int getSize()
Description copied from interface:
ListModelReturns the length of the list.
getElementAt
public Object getElementAt(int index)
Description copied from interface:
ListModelReturns the value at the specified index.
- Specified by:
-
getElementAtin interfaceListModel<Object> - Parameters:
-
index- the requested index - Returns:
- the value at
index
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/javax/swing/plaf/metal/MetalFileChooserUI.FilterComboBoxModel.html