use of meghanada.reference.ReferenceSearcher in project meghanada-server by mopemope.
the class Session method reference.
public List<Reference> reference(final String path, final int line, final int column, final String symbol) throws IOException, ExecutionException {
boolean b = this.changeProject(path);
final ReferenceSearcher searcher = this.getReferenceSearcher();
return searcher.searchReference(new File(path), line, column, symbol);
}
Aggregations