All Downloads are FREE. Search and download functionalities are using the official Maven repository.

editor.search.SearchDialog Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package editor.search;

import editor.FileTree;

/**
 */
public class SearchDialog extends AbstractSearchDialog
{
  public static State STATE = null;

  public SearchDialog( FileTree searchDir, boolean bReplace )
  {
    super( searchDir, bReplace, bReplace ? "Replace in Path" : "Find in Path" );
  }

  @Override
  protected State getState()
  {
    return STATE;
  }
  @Override
  protected void setState( State state )
  {
    STATE = state;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy