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

editor.search.SearchScope Maven / Gradle / Ivy

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

/**
 */
public enum SearchScope
{
  CurrentFile( "Current file" ),
  OpenFiles( "Open files" ),
  SelectedFiles( "Selected files" ),
  PreviousSearchFiles( "Files in previous search" );

  private final String _label;

  SearchScope( String label )
  {
    _label = label;
  }

  public String getLabel()
  {
    return _label;
  }

  public String toString()
  {
    return _label;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy