|
From: Christopher W. <caw...@us...> - 2006-03-28 23:15:47
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/codeassist In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18128/src/org/rubypeople/rdt/internal/codeassist Added Files: SelectionEngine.java Log Message: start laying groundwork for the F3/Open action where users can easily navigate from text selections and menus with IRubyElements to the source. --- NEW FILE: SelectionEngine.java --- package org.rubypeople.rdt.internal.codeassist; import org.rubypeople.rdt.core.IRubyElement; import org.rubypeople.rdt.core.IRubyScript; import org.rubypeople.rdt.internal.core.Openable; public class SelectionEngine { private Openable openable; public SelectionEngine(Openable openable) { this.openable = openable; } public IRubyElement[] select(IRubyScript cu, int start, int end) { // TODO Auto-generated method stub return new IRubyElement[0]; } } |