org.eclipse.search.ui.text.IFileMatchAdapter Java Examples

The following examples show how to use org.eclipse.search.ui.text.IFileMatchAdapter. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ModulaSearchResult.java    From xds-ide with Eclipse Public License 1.0 4 votes vote down vote up
public IFileMatchAdapter getFileMatchAdapter() {
    return null;
}
 
Example #2
Source File: TypeScriptSearchResult.java    From typescript.java with MIT License 4 votes vote down vote up
@Override
public IFileMatchAdapter getFileMatchAdapter() {
	return this;
}
 
Example #3
Source File: NLSSearchResult.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public IFileMatchAdapter getFileMatchAdapter() {
	return this;
}
 
Example #4
Source File: AbstractJavaSearchResult.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public IFileMatchAdapter getFileMatchAdapter() {
	return this;
}
 
Example #5
Source File: OccurrencesSearchResult.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public IFileMatchAdapter getFileMatchAdapter() {
	return this;
}
 
Example #6
Source File: SearchIndexResult.java    From Pydev with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public IFileMatchAdapter getFileMatchAdapter() {
    return this;
}
 
Example #7
Source File: PythonFileSearchResult.java    From Pydev with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public IFileMatchAdapter getFileMatchAdapter() {
    return this;
}