- /*
- * @(#)FileChooserUI.java 1.11 00/02/02
- *
- * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the proprietary information of Sun Microsystems, Inc.
- * Use is subject to license terms.
- *
- */
-
- package javax.swing.plaf;
-
- import javax.swing.JFileChooser;
- import javax.swing.filechooser.FileFilter;
- import javax.swing.filechooser.FileView;
- import java.io.File;
-
- /**
- * Pluggable look and feel interface for JFileChooser
- *
- * @version 1.11 02/02/00
- * @author Jeff Dinkins
- */
-
- public abstract class FileChooserUI extends ComponentUI
- {
- public abstract FileFilter getAcceptAllFileFilter(JFileChooser fc);
- public abstract FileView getFileView(JFileChooser fc);
-
- public abstract String getApproveButtonText(JFileChooser fc);
- public abstract String getDialogTitle(JFileChooser fc);
-
- public abstract void rescanCurrentDirectory(JFileChooser fc);
- public abstract void ensureFileIsVisible(JFileChooser fc, File f);
- }
-