Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1e481f9e344cd15726eb452152a65aa2dab73a39 (plain) (blame)
1
2
3
4
5
6
package org.eclipse.jdt.internal.core.index;

public interface IEntryResult {
public int[] getFileReferences();
public char[] getWord();
}

Back to the top