- 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 Summary
Modifier and TypeMethodDescriptiongetCode()
Returns the BeanShell code that will recreate this file set.int
getFileCount
(View view) Returns the number of files in this file set.String[]
Returns all path names in this file set.getFirstFile
(View view) Returns the first file to search.getLastFile
(View view) Returns the last file to search.getNextFile
(View view, String path) Returns the next file to search.getPrevFile
(View view, String path) Returns the previous file in the set.
-
Method Details
-
getFirstFile
Returns the first file to search.- Parameters:
view
- The view performing the search
-
getLastFile
Returns the last file to search.- Parameters:
view
- The view performing the search- Since:
- jEdit 5.0
-
getNextFile
Returns the next file to search.- Parameters:
view
- The view performing the searchpath
- The last file searched
-
getPrevFile
Returns the previous file in the set.- Parameters:
view
- The view performing the searchpath
- The last file searched
-
getFiles
Returns all path names in this file set.- Parameters:
view
- The view performing the search
-
getFileCount
Returns the number of files in this file set. -
getCode
String getCode()Returns the BeanShell code that will recreate this file set.
-