[Pydev-cvs] org.python.pydev/tests/org/python/pydev/plugin/nature ProjectStub2.java, 1.3, 1.4 FileS
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/plugin/nature In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32280/tests/org/python/pydev/plugin/nature Modified Files: ProjectStub2.java FileStub2.java Log Message: Removing some compile errors in eclipse 3.4 Index: FileStub2.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/tests/org/python/pydev/plugin/nature/FileStub2.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** FileStub2.java 27 May 2007 22:27:41 -0000 1.2 --- FileStub2.java 28 Jun 2008 13:29:19 -0000 1.3 *************** *** 9,12 **** --- 9,13 ---- import java.io.Reader; import java.net.URI; + import java.util.Map; import org.eclipse.core.resources.IContainer; *************** *** 360,363 **** --- 361,389 ---- } + 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 + + } + } Index: ProjectStub2.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/tests/org/python/pydev/plugin/nature/ProjectStub2.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ProjectStub2.java 27 May 2007 22:27:41 -0000 1.3 --- ProjectStub2.java 28 Jun 2008 13:29:19 -0000 1.4 *************** *** 445,447 **** --- 445,478 ---- } + public void create(IProjectDescription description, int updateFlags, + IProgressMonitor monitor) throws CoreException { + // TODO Auto-generated method stub + + } + + 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 + + } + } |