X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ISourceManipulation.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ISourceManipulation.java index 2747a52..554bbf9 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ISourceManipulation.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ISourceManipulation.java @@ -10,7 +10,6 @@ *******************************************************************************/ package net.sourceforge.phpdt.core; -import org.eclipse.core.runtime.IProgressMonitor; /** * Common protocol for Java elements that support source code manipulations such @@ -47,7 +46,7 @@ public interface ISourceManipulation { * * @exception IllegalArgumentException if container is null */ -void copy(IJavaElement container, IJavaElement sibling, String rename, boolean replace, IProgressMonitor monitor) throws JavaModelException; +//void copy(IJavaElement container, IJavaElement sibling, String rename, boolean replace, IProgressMonitor monitor) throws JavaModelException; /** * Deletes this element, forcing if specified and necessary. * @@ -62,7 +61,7 @@ void copy(IJavaElement container, IJavaElement sibling, String rename, boolean r *
  • This element is read-only (READ_ONLY)
  • * */ -void delete(boolean force, IProgressMonitor monitor) throws JavaModelException; +//void delete(boolean force, IProgressMonitor monitor) throws JavaModelException; /** * Moves this element to the given container. * @@ -90,7 +89,7 @@ void delete(boolean force, IProgressMonitor monitor) throws JavaModelException; * * @exception IllegalArgumentException if container is null */ -void move(IJavaElement container, IJavaElement sibling, String rename, boolean replace, IProgressMonitor monitor) throws JavaModelException; +//void move(IJavaElement container, IJavaElement sibling, String rename, boolean replace, IProgressMonitor monitor) throws JavaModelException; /** * Renames this element to the given name. * @@ -109,5 +108,5 @@ void move(IJavaElement container, IJavaElement sibling, String rename, boolean r *
  • This element is read-only (READ_ONLY) * */ -void rename(String name, boolean replace, IProgressMonitor monitor) throws JavaModelException; +//void rename(String name, boolean replace, IProgressMonitor monitor) throws JavaModelException; }