mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 06:55:23 +02:00
Cosmetics.
This commit is contained in:
parent
9827997ee8
commit
19cd344600
5 changed files with 110 additions and 108 deletions
|
@ -100,11 +100,13 @@ final public class EmptyCIndex implements IIndex {
|
|||
return null;
|
||||
}
|
||||
|
||||
public IIndexBinding[] findBindings(Pattern pattern, boolean isFullyQualified, IndexFilter filter, IProgressMonitor monitor) {
|
||||
public IIndexBinding[] findBindings(Pattern pattern, boolean isFullyQualified,
|
||||
IndexFilter filter, IProgressMonitor monitor) {
|
||||
return IIndexFragmentBinding.EMPTY_INDEX_BINDING_ARRAY;
|
||||
}
|
||||
|
||||
public IIndexBinding[] findBindings(Pattern[] pattern, boolean isFullyQualified, IndexFilter filter, IProgressMonitor monitor) throws CoreException {
|
||||
public IIndexBinding[] findBindings(Pattern[] pattern, boolean isFullyQualified,
|
||||
IndexFilter filter, IProgressMonitor monitor) throws CoreException {
|
||||
return IIndexFragmentBinding.EMPTY_INDEX_BINDING_ARRAY;
|
||||
}
|
||||
|
||||
|
@ -112,11 +114,13 @@ final public class EmptyCIndex implements IIndex {
|
|||
return null;
|
||||
}
|
||||
|
||||
public IIndexBinding[] findBindingsForPrefix(char[] prefix, boolean filescope, IndexFilter filter, IProgressMonitor monitor) {
|
||||
public IIndexBinding[] findBindingsForPrefix(char[] prefix, boolean filescope,
|
||||
IndexFilter filter, IProgressMonitor monitor) {
|
||||
return IIndexBinding.EMPTY_INDEX_BINDING_ARRAY;
|
||||
}
|
||||
|
||||
public IIndexBinding[] findBindingsForContentAssist(char[] prefix, boolean filescope, IndexFilter filter, IProgressMonitor monitor) {
|
||||
public IIndexBinding[] findBindingsForContentAssist(char[] prefix, boolean filescope,
|
||||
IndexFilter filter, IProgressMonitor monitor) {
|
||||
return IIndexBinding.EMPTY_INDEX_BINDING_ARRAY;
|
||||
}
|
||||
|
||||
|
|
|
@ -9,15 +9,13 @@
|
|||
* Markus Schorn - initial API and implementation
|
||||
* Andrew Ferguson (Symbian)
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.cdt.internal.core.index;
|
||||
|
||||
import org.eclipse.cdt.core.index.IIndexName;
|
||||
import org.eclipse.core.runtime.CoreException;
|
||||
|
||||
public interface IIndexFragmentName extends IIndexName {
|
||||
|
||||
public static final IIndexFragmentName[] EMPTY_NAME_ARRAY = new IIndexFragmentName[0];
|
||||
public static final IIndexFragmentName[] EMPTY_NAME_ARRAY = {};
|
||||
|
||||
/**
|
||||
* Returns the fragment that owns this name.
|
||||
|
|
Loading…
Add table
Reference in a new issue