Module jEdit

Interface SearchFileSet

All Known Implementing Classes:
AllBufferSet, BufferListSet, CurrentBufferSet, DirectoryListSet

public interface SearchFileSet
An abstract interface representing a set of files.
Version:
$Id: SearchFileSet.java 20610 2011-12-11 15:46:35Z evanpw $
Author:
Slava Pestov
  • Method Details

    • getFirstFile

      String getFirstFile(View view)
      Returns the first file to search.
      Parameters:
      view - The view performing the search
    • getLastFile

      String getLastFile(View view)
      Returns the last file to search.
      Parameters:
      view - The view performing the search
      Since:
      jEdit 5.0
    • getNextFile

      String getNextFile(View view, String path)
      Returns the next file to search.
      Parameters:
      view - The view performing the search
      path - The last file searched
    • getPrevFile

      String getPrevFile(View view, String path)
      Returns the previous file in the set.
      Parameters:
      view - The view performing the search
      path - The last file searched
    • getFiles

      String[] getFiles(View view)
      Returns all path names in this file set.
      Parameters:
      view - The view performing the search
    • getFileCount

      int getFileCount(View view)
      Returns the number of files in this file set.
    • getCode

      String getCode()
      Returns the BeanShell code that will recreate this file set.