org.fife.ui.search
Class FindInFilesSearchContext

java.lang.Object
  extended by org.fife.ui.rtextarea.SearchContext
      extended by org.fife.ui.search.FindInFilesSearchContext
All Implemented Interfaces:
java.lang.Cloneable

public class FindInFilesSearchContext
extends SearchContext

A search context that also contains options relevant to a Find in Files or Replace in Files dialog.

Version:
1.0
Author:
Robert Futrell

Field Summary
 
Fields inherited from class org.fife.ui.rtextarea.SearchContext
PROPERTY_MARK_ALL, PROPERTY_MATCH_CASE, PROPERTY_MATCH_WHOLE_WORD, PROPERTY_REPLACE_WITH, PROPERTY_SEARCH_FOR, PROPERTY_SEARCH_FORWARD, PROPERTY_SELECTION_ONLY, PROPERTY_USE_REGEX
 
Constructor Summary
FindInFilesSearchContext()
           
 
Method Summary
 boolean getSearchSubfolders()
          Returns whether subfolders should be searched.
 boolean getVerbose()
          Returns whether verbose output should be enabled.
 void setSearchSubfolders(boolean search)
          Sets whether subfolders should be searched.
 void setVerbose(boolean verbose)
          Sets whether verbose output should be enabled.
 
Methods inherited from class org.fife.ui.rtextarea.SearchContext
addPropertyChangeListener, clone, firePropertyChange, firePropertyChange, getMarkAll, getMatchCase, getReplaceWith, getSearchFor, getSearchForward, getSearchSelectionOnly, getWholeWord, isRegularExpression, removePropertyChangeListener, setMarkAll, setMatchCase, setRegularExpression, setReplaceWith, setSearchFor, setSearchForward, setSearchSelectionOnly, setWholeWord, toString
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

FindInFilesSearchContext

public FindInFilesSearchContext()
Method Detail

getSearchSubfolders

public boolean getSearchSubfolders()
Returns whether subfolders should be searched.

Returns:
Whether subfolders should be searched.
See Also:
setSearchSubfolders(boolean)

getVerbose

public boolean getVerbose()
Returns whether verbose output should be enabled.

Returns:
Whether verbose output should be enabled.
See Also:
setVerbose(boolean)

setSearchSubfolders

public void setSearchSubfolders(boolean search)
Sets whether subfolders should be searched.

Parameters:
search - Whether to search subfolders.
See Also:
getSearchSubfolders()

setVerbose

public void setVerbose(boolean verbose)
Sets whether verbose output should be enabled.

Parameters:
verbose - Whether verbose output should be enabled.
See Also:
getVerbose()