Class MetalFileChooserUI.DirectoryComboBoxModel
java.lang.Object
javax.swing.AbstractListModel<Object>
javax.swing.plaf.metal.MetalFileChooserUI.DirectoryComboBoxModel
- All Implemented Interfaces:
Serializable, ComboBoxModel<Object>, ListModel<Object>
- Enclosing class:
MetalFileChooserUI
protected class MetalFileChooserUI.DirectoryComboBoxModel
extends AbstractListModel<Object>
implements ComboBoxModel<Object>
Data model for a type-face selection combo-box.
-
Field Summary
Fields declared in class AbstractListModel
listenerList -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintgetDepth(int i) Returns the depth ofi-th file.getElementAt(int index) Returns the value at the specified index.Returns the selected itemintgetSize()Returns the length of the list.voidsetSelectedItem(Object selectedDirectory) Set the selected item.Methods declared in class AbstractListModel
addListDataListener, fireContentsChanged, fireIntervalAdded, fireIntervalRemoved, getListDataListeners, getListeners, removeListDataListenerModifier and TypeMethodDescriptionvoidAdds a listener to the list that's notified each time a change to the data model occurs.protected voidfireContentsChanged(Object source, int index0, int index1) AbstractListModelsubclasses must call this method after one or more elements of the list change.protected voidfireIntervalAdded(Object source, int index0, int index1) AbstractListModelsubclasses must call this method after one or more elements are added to the model.protected voidfireIntervalRemoved(Object source, int index0, int index1) AbstractListModelsubclasses must call this method after one or more elements are removed from the model.Returns an array of all the list data listeners registered on thisAbstractListModel.<T extends EventListener>
T[]getListeners(Class<T> listenerType) Returns an array of all the objects currently registered asFooListeners upon this model.voidRemoves a listener from the list that's notified each time a change to the data model occurs.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
DirectoryComboBoxModel
public DirectoryComboBoxModel()Constructs an instance ofDirectoryComboBoxModel.
-
-
Method Details
-
getDepth
public int getDepth(int i) Returns the depth ofi-th file.- Parameters:
i- an index- Returns:
- the depth of
i-th file
-
setSelectedItem
Description copied from interface:ComboBoxModelSet the selected item. The implementation of this method should notify all registeredListDataListeners that the contents have changed.- Specified by:
setSelectedItemin interfaceComboBoxModel<Object>- Parameters:
selectedDirectory- the list object to select ornullto clear the selection
-
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
-
getElementAt
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
-