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..449f6bb 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ISourceManipulation.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ISourceManipulation.java @@ -47,7 +47,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 +62,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 +90,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 +109,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; }