|
From: Markus B. <mba...@us...> - 2005-07-13 14:30:13
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4608/src/org/rubypeople/rdt/internal/launching/tests Modified Files: TC_RubyRuntime.java Log Message: updates for 3.1 Index: TC_RubyRuntime.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/tests/TC_RubyRuntime.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** TC_RubyRuntime.java 5 Mar 2005 15:18:57 -0000 1.11 --- TC_RubyRuntime.java 13 Jul 2005 14:30:04 -0000 1.12 *************** *** 20,23 **** --- 20,24 ---- import org.eclipse.core.resources.IResourceVisitor; import org.eclipse.core.resources.IWorkspace; + import org.eclipse.core.resources.ResourceAttributes; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IPath; *************** *** 321,324 **** --- 322,345 ---- } + public String getCharsetFor(Reader reader) throws CoreException { + // TODO Auto-generated method stub + return null; + } + + public ResourceAttributes getResourceAttributes() { + // TODO Auto-generated method stub + return null; + } + + public void revertModificationStamp(long value) throws CoreException { + // TODO Auto-generated method stub + + } + + public void setResourceAttributes(ResourceAttributes attributes) throws CoreException { + // TODO Auto-generated method stub + + } + } |