|
From: David C. <dc...@us...> - 2005-11-19 20:23:33
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22214/src/org/rubypeople/rdt/core Modified Files: RubyCore.java Log Message: Introduce ISymbolFinder, and change SymbolIndex clients accordingly. Index: RubyCore.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/core/RubyCore.java,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** RubyCore.java 13 Nov 2005 15:47:08 -0000 1.25 --- RubyCore.java 19 Nov 2005 20:23:25 -0000 1.26 *************** *** 48,51 **** --- 48,52 ---- import org.rubypeople.rdt.internal.core.builder.RubyBuilder; import org.rubypeople.rdt.internal.core.parser.RubyParser; + import org.rubypeople.rdt.internal.core.symbols.ISymbolFinder; import org.rubypeople.rdt.internal.core.symbols.SymbolIndex; *************** *** 475,478 **** --- 476,483 ---- public SymbolIndex getSymbolIndex() { return symbolIndex; + } + + public ISymbolFinder getSymbolFinder() { + return symbolIndex; } } \ No newline at end of file |