[Pydev-cvs] org.python.pydev/tests/org/python/pydev/eclipseresourcestubs FileResourceStub.java, 1.
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-06-28 13:29:12
|
Update of /cvsroot/pydev/org.python.pydev/tests/org/python/pydev/eclipseresourcestubs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32280/tests/org/python/pydev/eclipseresourcestubs Modified Files: FileResourceStub.java Log Message: Removing some compile errors in eclipse 3.4 Index: FileResourceStub.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/tests/org/python/pydev/eclipseresourcestubs/FileResourceStub.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FileResourceStub.java 27 May 2007 22:27:41 -0000 1.4 --- FileResourceStub.java 28 Jun 2008 13:29:20 -0000 1.5 *************** *** 9,12 **** --- 9,13 ---- import java.io.Reader; import java.net.URI; + import java.util.Map; import org.eclipse.core.resources.IContainer; *************** *** 411,414 **** --- 412,440 ---- } + public Map getPersistentProperties() throws CoreException { + // TODO Auto-generated method stub + return null; + } + + public Map getSessionProperties() throws CoreException { + // TODO Auto-generated method stub + return null; + } + + public boolean isDerived(int options) { + // TODO Auto-generated method stub + return false; + } + + public boolean isHidden() { + // TODO Auto-generated method stub + return false; + } + + public void setHidden(boolean isHidden) throws CoreException { + // TODO Auto-generated method stub + + } + } |