|
From: Christopher W. <caw...@us...> - 2006-02-10 19:59:59
|
Update of /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams/src/org/rubypeople/eclipse/shams/debug/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13477/src/org/rubypeople/eclipse/shams/debug/core Modified Files: ShamLaunchConfiguration.java ShamLaunchConfigurationWorkingCopy.java ShamLaunchManager.java Log Message: try to fix tests to run with new code changes Index: ShamLaunchManager.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams/src/org/rubypeople/eclipse/shams/debug/core/ShamLaunchManager.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ShamLaunchManager.java 13 Jul 2005 14:29:45 -0000 1.10 --- ShamLaunchManager.java 10 Feb 2006 19:59:51 -0000 1.11 *************** *** 205,207 **** --- 205,212 ---- } + public ILaunchConfiguration[] getMigrationCandidates() throws CoreException { + // TODO Auto-generated method stub + return null; + } + } Index: ShamLaunchConfiguration.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams/src/org/rubypeople/eclipse/shams/debug/core/ShamLaunchConfiguration.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ShamLaunchConfiguration.java 2 Mar 2005 00:52:41 -0000 1.4 --- ShamLaunchConfiguration.java 10 Feb 2006 19:59:51 -0000 1.5 *************** *** 5,8 **** --- 5,9 ---- import org.eclipse.core.resources.IFile; + import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IPath; *************** *** 120,122 **** --- 121,138 ---- throw new RuntimeException("Need to implement on sham."); } + + 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 + + } } Index: ShamLaunchConfigurationWorkingCopy.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams/src/org/rubypeople/eclipse/shams/debug/core/ShamLaunchConfigurationWorkingCopy.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** ShamLaunchConfigurationWorkingCopy.java 2 Mar 2005 00:52:41 -0000 1.5 --- ShamLaunchConfigurationWorkingCopy.java 10 Feb 2006 19:59:51 -0000 1.6 *************** *** 7,10 **** --- 7,11 ---- import org.eclipse.core.resources.IContainer; import org.eclipse.core.resources.IFile; + import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IPath; *************** *** 168,170 **** --- 169,191 ---- throw new RuntimeException("Need to implement on sham."); } + + public void setMappedResources(IResource[] resources) { + // TODO Auto-generated method stub + + } + + 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 + + } } |