|
From: Christopher W. <caw...@us...> - 2006-02-10 19:59:55
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.ui.tests/src/org/rubypeople/rdt/internal/debug/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13453/src/org/rubypeople/rdt/internal/debug/ui Modified Files: TC_RubySourceLocator.java Log Message: try to fix tests to run with new code changes Index: TC_RubySourceLocator.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.debug.ui.tests/src/org/rubypeople/rdt/internal/debug/ui/TC_RubySourceLocator.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TC_RubySourceLocator.java 16 Oct 2005 23:52:59 -0000 1.1 --- TC_RubySourceLocator.java 10 Feb 2006 19:59:47 -0000 1.2 *************** *** 11,14 **** --- 11,15 ---- import org.eclipse.core.internal.resources.Workspace; import org.eclipse.core.resources.IFile; + import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IPath; *************** *** 207,210 **** --- 208,226 ---- return null; } + + public IResource[] getMappedResources() throws CoreException { + // TODO Auto-generated method stub + return null; + } + + public boolean isMigrationCandidate() throws CoreException { + // TODO Auto-generated method stub + return false; + } + + public void migrate() throws CoreException { + // TODO Auto-generated method stub + + } } } |