mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 17:35:35 +02:00
[340069] Change access modifier for SystemSearchPage methods to protected from private
This commit is contained in:
parent
c910e4ceb1
commit
e7833db671
1 changed files with 12 additions and 12 deletions
|
@ -179,19 +179,19 @@ public class SystemSearchPage extends DialogPage implements ISearchPage {
|
|||
private static final int MAX_DATA_SIZE = 20;
|
||||
|
||||
// inner class to hold search data
|
||||
private class RemoteSearchData {
|
||||
protected class RemoteSearchData {
|
||||
|
||||
private String searchString;
|
||||
private boolean caseSensitive;
|
||||
private boolean stringRegex;
|
||||
private String fileNames;
|
||||
private boolean fileNameCaseSensitive;
|
||||
private boolean fileNameRegex;
|
||||
private String profileName;
|
||||
private String connectionName;
|
||||
private String folderName;
|
||||
private boolean includeArchives;
|
||||
private boolean includeSubfolders;
|
||||
public String searchString;
|
||||
public boolean caseSensitive;
|
||||
public boolean stringRegex;
|
||||
public String fileNames;
|
||||
public boolean fileNameCaseSensitive;
|
||||
public boolean fileNameRegex;
|
||||
public String profileName;
|
||||
public String connectionName;
|
||||
public String folderName;
|
||||
public boolean includeArchives;
|
||||
public boolean includeSubfolders;
|
||||
|
||||
/**
|
||||
* Constructor for search data.
|
||||
|
|
Loading…
Add table
Reference in a new issue