On this page
Class BasicDirectoryModel
- All Implemented Interfaces:
PropertyChangeListener
,Serializable
,EventListener
,ListModel<Object>
public class BasicDirectoryModel extends AbstractListModel<Object> implements PropertyChangeListener
Field Summary
Fields declared in class javax.swing.AbstractListModel
listenerList
Constructor Summary
Constructor | Description |
---|---|
BasicDirectoryModel |
Constructs a new instance of BasicDirectoryModel .
|
Method Summary
Modifier and Type | Method | Description |
---|---|---|
void |
addPropertyChangeListener |
Adds a PropertyChangeListener to the listener list.
|
boolean |
contains |
Returns true if an element o is in file cache, otherwise, returns false .
|
void |
fireContentsChanged() |
Invoked when a content is changed.
|
protected void |
firePropertyChange |
Support for reporting bound property changes for boolean properties.
|
Vector |
getDirectories() |
Returns a list of directories.
|
Object |
getElementAt |
Returns the value at the specified index.
|
Vector |
getFiles() |
Returns a list of files.
|
PropertyChangeListener[] |
getPropertyChangeListeners() |
Returns an array of all the property change listeners registered on this component.
|
int |
getSize() |
Returns the length of the list.
|
int |
indexOf |
Returns an index of element o in file cache.
|
void |
intervalAdded |
Deprecated, for removal: This API element is subject to removal in a future version.
Obsolete method, not used anymore.
|
void |
intervalRemoved |
Deprecated, for removal: This API element is subject to removal in a future version.
Obsolete method, not used anymore.
|
void |
invalidateFileCache() |
This method is used to interrupt file loading thread.
|
protected boolean |
lt |
Deprecated, for removal: This API element is subject to removal in a future version.
Obsolete method, not used anymore.
|
void |
propertyChange |
This method gets called when a bound property is changed.
|
void |
removePropertyChangeListener |
Removes a PropertyChangeListener from the listener list.
|
boolean |
renameFile |
Renames a file in the underlying file system.
|
protected void |
sort |
Sorts a list of files.
|
void |
validateFileCache() |
Validates content of file cache.
|
Methods declared in class javax.swing.AbstractListModel
addListDataListener, fireContentsChanged, fireIntervalAdded, fireIntervalRemoved, getListDataListeners, getListeners, removeListDataListener
Constructor Details
BasicDirectoryModel
public BasicDirectoryModel(JFileChooser filechooser)
BasicDirectoryModel
.
- Parameters:
filechooser
- an instance of {JFileChooser}
Method Details
propertyChange
public void propertyChange(PropertyChangeEvent e)
PropertyChangeListener
- Specified by:
propertyChange
in interfacePropertyChangeListener
- Parameters:
e
- A PropertyChangeEvent object describing the event source and the property that has changed.
invalidateFileCache
public void invalidateFileCache()
getDirectories
public Vector<File> getDirectories()
- Returns:
- a list of directories
getFiles
public Vector<File> getFiles()
- Returns:
- a list of files
validateFileCache
public void validateFileCache()
renameFile
public boolean renameFile(File oldFile, File newFile)
- Parameters:
oldFile
- aFile
object representing the existing filenewFile
- aFile
object representing the desired new file name- Returns:
true
if rename succeeded, otherwisefalse
- Since:
- 1.4
fireContentsChanged
public void fireContentsChanged()
getSize
public int getSize()
ListModel
contains
public boolean contains(Object o)
true
if an element o
is in file cache, otherwise, returns false
.
- Parameters:
o
- an element- Returns:
true
if an elemento
is in file cache
indexOf
public int indexOf(Object o)
o
in file cache.
- Parameters:
o
- an element- Returns:
-
an index of element
o
in file cache
getElementAt
public Object getElementAt(int index)
ListModel
- Specified by:
getElementAt
in interfaceListModel<Object>
- Parameters:
index
- the requested index- Returns:
-
the value at
index
intervalAdded
@Deprecated(since="17", forRemoval=true) public void intervalAdded(ListDataEvent e)
- Parameters:
e
- list data event
intervalRemoved
@Deprecated(since="17", forRemoval=true) public void intervalRemoved(ListDataEvent e)
- Parameters:
e
- list data event
sort
protected void sort(Vector<? extends File> v)
- Parameters:
v
- a list of files
lt
@Deprecated(since="17", forRemoval=true) protected boolean lt(File a, File b)
- Parameters:
a
- a fileb
- another file- Returns:
- a comparison of the file names
addPropertyChangeListener
public void addPropertyChangeListener(PropertyChangeListener listener)
If listener
is null
, no exception is thrown and no action is performed.
- Parameters:
listener
- the property change listener to be added- Since:
- 1.6
- See Also:
removePropertyChangeListener
public void removePropertyChangeListener(PropertyChangeListener listener)
If listener is null, no exception is thrown and no action is performed.
- Parameters:
listener
- the PropertyChangeListener to be removed- Since:
- 1.6
- See Also:
getPropertyChangeListeners
public PropertyChangeListener[] getPropertyChangeListeners()
- Returns:
-
all of this component's
PropertyChangeListener
s or an empty array if no property change listeners are currently registered - Since:
- 1.6
- See Also:
firePropertyChange
protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)
- Parameters:
propertyName
- the property whose value has changedoldValue
- the property's previous valuenewValue
- the property's new value- Since:
- 1.6
© 1993, 2023, 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/21/docs/api/java.desktop/javax/swing/plaf/basic/BasicDirectoryModel.html