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 TypeMethodDescriptionint
getDepth
(int i) Returns the depth ofi
-th file.getElementAt
(int index) Returns the value at the specified index.Returns the selected itemint
getSize()
Returns the length of the list.void
setSelectedItem
(Object selectedDirectory) Set the selected item.Methods declared in class AbstractListModel
addListDataListener, fireContentsChanged, fireIntervalAdded, fireIntervalRemoved, getListDataListeners, getListeners, removeListDataListener
Modifier and TypeMethodDescriptionvoid
Adds a listener to the list that's notified each time a change to the data model occurs.protected void
fireContentsChanged
(Object source, int index0, int index1) AbstractListModel
subclasses must call this method after one or more elements of the list change.protected void
fireIntervalAdded
(Object source, int index0, int index1) AbstractListModel
subclasses must call this method after one or more elements are added to the model.protected void
fireIntervalRemoved
(Object source, int index0, int index1) AbstractListModel
subclasses 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 asFooListener
s upon this model.void
Removes 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, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
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
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(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 void
wait
(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:ComboBoxModel
Set the selected item. The implementation of this method should notify all registeredListDataListener
s that the contents have changed.- Specified by:
setSelectedItem
in interfaceComboBoxModel<Object>
- Parameters:
selectedDirectory
- the list object to select ornull
to clear the selection
-
getSelectedItem
Description copied from interface:ComboBoxModel
Returns the selected item- Specified by:
getSelectedItem
in interfaceComboBoxModel<Object>
- Returns:
- The selected item or
null
if there is no selection
-
getSize
-
getElementAt
Description copied from interface:ListModel
Returns the value at the specified index.- Specified by:
getElementAt
in interfaceListModel<Object>
- Parameters:
index
- the requested index- Returns:
- the value at
index
-