X-Git-Url: http://secure.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 e829cfe..554bbf9 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ISourceManipulation.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ISourceManipulation.java @@ -1,16 +1,15 @@ /******************************************************************************* - * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others. + * Copyright (c) 2000, 2003 IBM Corporation and others. * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Common Public License v0.5 + * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/cpl-v05.html + * http://www.eclipse.org/legal/cpl-v10.html * * Contributors: * IBM Corporation - initial API and implementation - ******************************************************************************/ + *******************************************************************************/ 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; }