< prev index next >
src/java.desktop/share/classes/javax/swing/filechooser/FileFilter.java
Print this page
@@ -26,17 +26,17 @@
package javax.swing.filechooser;
import java.io.File;
/**
- * <code>FileFilter</code> is an abstract class used by {@code JFileChooser}
+ * {@code FileFilter} is an abstract class used by {@code JFileChooser}
* for filtering the set of files shown to the user. See
* {@code FileNameExtensionFilter} for an implementation that filters using
* the file name extension.
* <p>
- * A <code>FileFilter</code>
- * can be set on a <code>JFileChooser</code> to
+ * A {@code FileFilter}
+ * can be set on a {@code JFileChooser} to
* keep unwanted files from appearing in the directory listing.
* For an example implementation of a simple file filter, see
* <code><i>yourJDK</i>/demo/jfc/FileChooserDemo/ExampleFileFilter.java</code>.
* For more information and examples see
* <a href="http://docs.oracle.com/javase/tutorial/uiswing/components/filechooser.html">How to Use File Choosers</a>,
< prev index next >