Class FileManager

java.lang.Object
ucar.unidata.util.FileManager
ucar.unidata.ui.FileManager

public class FileManager extends FileManager
Wrapper cover for JFileChooser. deprecated Use ucar.unidata.util.FileManager
Version:
$Id: FileManager.java,v 1.59 2007/07/06 20:45:30 jeffmc Exp $
Author:
Unidata development staff
  • Constructor Details

    • FileManager

      public FileManager(Component parent)
      Create a FileManager and use parent as the parent for the dialog.
      Parameters:
      parent - parent component for the dialog.
    • FileManager

      public FileManager(Component parent, String defDir, String file_extension, String desc)
      Create a FileManager and use the specified params to configure its behavior.
      Parameters:
      parent - parent component for the dialog.
      defDir - default directory to open up
      file_extension - file_extention to use for a filter
      desc - description of files of type file_extension
    • FileManager

      public FileManager(Component parent, String defDir, FileFilter filter)
      Create a FileManager and use the specified params to configure its behavior.
      Parameters:
      parent - parent component for the dialog.
      defDir - default directory to open up
      filter - default FileFilter
    • FileManager

      public FileManager(Component parent, String defDir, FileFilter filter, String title)
      Create a FileManager and use the specified params to configure its behavior.
      Parameters:
      parent - parent component for the dialog.
      defDir - default directory to open up
      filter - default FileFilter
      title - title for the dialog window
    • FileManager

      public FileManager(Component parent, String defDir, List filters)
      Create a FileManager and use the specified params to configure its behavior.
      Parameters:
      parent - parent component for the dialog.
      defDir - default directory to open up
      filters - List of default FileFilter's
    • FileManager

      public FileManager(Component parent, String defDir, List filters, String title)
      Create a FileManager and use the specified params to configure its behavior.
      Parameters:
      parent - parent component for the dialog.
      defDir - default directory to open up
      filters - List of default FileFilter's
      title - title for the dialog window
    • FileManager

      public FileManager(Component parent, String defDir, List filters, String title, boolean includeAllFilter)
      Create a FileManager and use the specified params to configure its behavior.
      Parameters:
      parent - parent component for the dialog.
      defDir - default directory to open up
      filters - List of default FileFilter's
      title - title for the dialog window
      includeAllFilter - true to include the "All files" filter.