protected class

BasicFileChooserUI.BasicFileView

extends FileView
java.lang.Object
   ↳ javax.swing.filechooser.FileView
     ↳ javax.swing.plaf.basic.BasicFileChooserUI.BasicFileView
Known Direct Subclasses

Summary

Fields
protected Hashtable<FileIcon> iconCache
Public Constructors
BasicFileChooserUI.BasicFileView()
Public Methods
void cacheIcon(File f, Icon i)
void clearIconCache()
Icon getCachedIcon(File f)
String getDescription(File f)
A human readable description of the file.
Icon getIcon(File f)
The icon that represents this file in the JFileChooser.
String getName(File f)
The name of the file.
String getTypeDescription(File f)
A human readable description of the type of the file.
Boolean isHidden(File f)
[Expand]
Inherited Methods
From class javax.swing.filechooser.FileView
From class java.lang.Object

Fields

protected Hashtable<FileIcon> iconCache

Public Constructors

public BasicFileChooserUI.BasicFileView ()

Public Methods

public void cacheIcon (File f, Icon i)

public void clearIconCache ()

public Icon getCachedIcon (File f)

public String getDescription (File f)

A human readable description of the file. For example, a file named jag.jpg might have a description that read: "A JPEG image file of James Gosling's face".

public Icon getIcon (File f)

The icon that represents this file in the JFileChooser.

public String getName (File f)

The name of the file. Normally this would be simply f.getName().

public String getTypeDescription (File f)

A human readable description of the type of the file. For example, a jpg file might have a type description of: "A JPEG Compressed Image File"

public Boolean isHidden (File f)