|
From: Markus B. <mba...@us...> - 2005-07-13 14:29:54
|
Update of /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams/src/org/rubypeople/eclipse/shams/resources In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4336/src/org/rubypeople/eclipse/shams/resources Modified Files: ShamFile.java ShamResource.java ShamProject.java Log Message: updates for 3.1 Index: ShamFile.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams/src/org/rubypeople/eclipse/shams/resources/ShamFile.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ShamFile.java 27 Jun 2004 11:43:13 -0000 1.11 --- ShamFile.java 13 Jul 2005 14:29:45 -0000 1.12 *************** *** 5,8 **** --- 5,9 ---- import java.io.FileNotFoundException; import java.io.InputStream; + import java.io.Reader; import org.eclipse.core.resources.IContainer; *************** *** 14,17 **** --- 15,19 ---- 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; *************** *** 302,304 **** --- 304,326 ---- return null; } + + 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 + + } } Index: ShamProject.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams/src/org/rubypeople/eclipse/shams/resources/ShamProject.java,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ShamProject.java 12 Mar 2005 15:41:42 -0000 1.9 --- ShamProject.java 13 Jul 2005 14:29:45 -0000 1.10 *************** *** 15,18 **** --- 15,19 ---- 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; *************** *** 21,24 **** --- 22,26 ---- import org.eclipse.core.runtime.Path; import org.eclipse.core.runtime.QualifiedName; + import org.eclipse.core.runtime.content.IContentTypeMatcher; public class ShamProject extends ShamResource implements IProject { *************** *** 319,322 **** --- 321,344 ---- } + public IContentTypeMatcher getContentTypeMatcher() 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 + + } + } Index: ShamResource.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.eclipse.shams/src/org/rubypeople/eclipse/shams/resources/ShamResource.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ShamResource.java 5 Mar 2005 15:19:23 -0000 1.6 --- ShamResource.java 13 Jul 2005 14:29:45 -0000 1.7 *************** *** 9,12 **** --- 9,13 ---- 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; *************** *** 245,247 **** --- 246,263 ---- } + 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 + + } + } |