Package weka.gui

Class WekaFileChooser

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible
Direct Known Subclasses:
ConverterFileChooser

public class WekaFileChooser extends JFileChooser
Customized WekaFileChooser with support for bookmarks.
Author:
FracPete (fracpete at waikato dot ac dot nz)
See Also:
  • Constructor Details

    • WekaFileChooser

      public WekaFileChooser()
      Constructs a WekaFileChooser pointing to the user's default directory. This default depends on the operating system. It is typically the "My Documents" folder on Windows, and the user's home directory on Unix.
    • WekaFileChooser

      public WekaFileChooser(String currentDirectoryPath)
      Constructs a WekaFileChooser using the given path. Passing in a null string causes the file chooser to point to the user's default directory. This default depends on the operating system. It is typically the "My Documents" folder on Windows, and the user's home directory on Unix.
      Parameters:
      currentDirectoryPath - a String giving the path to a file or directory
    • WekaFileChooser

      public WekaFileChooser(File currentDirectory)
      Constructs a WekaFileChooser using the given File as the path. Passing in a null file causes the file chooser to point to the user's default directory. This default depends on the operating system. It is typically the "My Documents" folder on Windows, and the user's home directory on Unix.
      Parameters:
      currentDirectory - a File object specifying the path to a file or directory
    • WekaFileChooser

      public WekaFileChooser(FileSystemView fsv)
      Constructs a WekaFileChooser using the given FileSystemView.
      Parameters:
      fsv - a FileSystemView
    • WekaFileChooser

      public WekaFileChooser(File currentDirectory, FileSystemView fsv)
      Constructs a WekaFileChooser using the given current directory and FileSystemView.
      Parameters:
      currentDirectory - a File object specifying the path to a file or directory
      fsv - a FileSystemView
    • WekaFileChooser

      public WekaFileChooser(String currentDirectoryPath, FileSystemView fsv)
      Constructs a WekaFileChooser using the given current directory path and FileSystemView.
      Parameters:
      currentDirectoryPath - a String specifying the path to a file or directory
      fsv - a FileSystemView