[Pydev-cvs] org.python.pydev/tests_completions/org/python/pydev/editor/codecompletion/revisited Pr
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-06-28 13:29:12
|
Update of /cvsroot/pydev/org.python.pydev/tests_completions/org/python/pydev/editor/codecompletion/revisited In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32280/tests_completions/org/python/pydev/editor/codecompletion/revisited Modified Files: ProjectStub.java Log Message: Removing some compile errors in eclipse 3.4 Index: ProjectStub.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/tests_completions/org/python/pydev/editor/codecompletion/revisited/ProjectStub.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ProjectStub.java 27 May 2007 22:27:41 -0000 1.2 --- ProjectStub.java 28 Jun 2008 13:29:19 -0000 1.3 *************** *** 458,460 **** --- 458,491 ---- } + 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 + + } + } |