org.gjt.sp.jedit.search
Class CurrentBufferSet

java.lang.Object
  extended byorg.gjt.sp.jedit.search.CurrentBufferSet
All Implemented Interfaces:
SearchFileSet

public class CurrentBufferSet
extends java.lang.Object
implements SearchFileSet

A file set for searching the current buffer.

Version:
$Id: CurrentBufferSet.java,v 1.4 2002/05/28 01:50:19 spestov Exp $
Author:
Slava Pestov

Constructor Summary
CurrentBufferSet()
           
 
Method Summary
 java.lang.String getCode()
          Returns the BeanShell code that will recreate this file set.
 int getFileCount(View view)
          Returns the number of files in this file set.
 java.lang.String[] getFiles(View view)
          Returns all path names in this file set.
 java.lang.String getFirstFile(View view)
          Returns the first file to search.
 java.lang.String getNextFile(View view, java.lang.String file)
          Returns the next file to search.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CurrentBufferSet

public CurrentBufferSet()
Method Detail

getFirstFile

public java.lang.String getFirstFile(View view)
Description copied from interface: SearchFileSet
Returns the first file to search.

Specified by:
getFirstFile in interface SearchFileSet
Parameters:
view - The view performing the search

getNextFile

public java.lang.String getNextFile(View view,
                                    java.lang.String file)
Description copied from interface: SearchFileSet
Returns the next file to search.

Specified by:
getNextFile in interface SearchFileSet
Parameters:
view - The view performing the search
file - The last file searched

getFiles

public java.lang.String[] getFiles(View view)
Description copied from interface: SearchFileSet
Returns all path names in this file set.

Specified by:
getFiles in interface SearchFileSet
Parameters:
view - The view performing the search

getFileCount

public int getFileCount(View view)
Description copied from interface: SearchFileSet
Returns the number of files in this file set.

Specified by:
getFileCount in interface SearchFileSet

getCode

public java.lang.String getCode()
Description copied from interface: SearchFileSet
Returns the BeanShell code that will recreate this file set.

Specified by:
getCode in interface SearchFileSet