|
From: Markus B. <mba...@us...> - 2005-10-24 11:08:21
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16067/src/org/rubypeople/rdt/internal/ui/search Modified Files: RubySearchQuery.java Log Message: fixed compilation error Index: RubySearchQuery.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/search/RubySearchQuery.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RubySearchQuery.java 23 Oct 2005 19:31:28 -0000 1.1 --- RubySearchQuery.java 24 Oct 2005 11:08:11 -0000 1.2 *************** *** 25,31 **** import org.eclipse.search.ui.text.Match; import org.rubypeople.rdt.core.RubyCore; import org.rubypeople.rdt.internal.core.symbols.SearchResult; ! public class RubySearchQuery implements ISearchQuery { private String fSearchString; --- 25,32 ---- import org.eclipse.search.ui.text.Match; import org.rubypeople.rdt.core.RubyCore; + import org.rubypeople.rdt.internal.core.symbols.ISymbolTypes; import org.rubypeople.rdt.internal.core.symbols.SearchResult; ! public class RubySearchQuery implements ISearchQuery, ISymbolTypes { private String fSearchString; *************** *** 62,66 **** public IStatus run(IProgressMonitor monitor) throws OperationCanceledException { ! Set entries = RubyCore.getPlugin().getSymbolIndex().find(fSearchString); for (Iterator iter = entries.iterator(); iter.hasNext();) { --- 63,67 ---- public IStatus run(IProgressMonitor monitor) throws OperationCanceledException { ! Set entries = RubyCore.getPlugin().getSymbolIndex().find(fSearchString, CLASS_SYMBOL ); for (Iterator iter = entries.iterator(); iter.hasNext();) { |