X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/IWorkingCopyManagerExtension.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/IWorkingCopyManagerExtension.java index 3bca478..1e354a9 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/IWorkingCopyManagerExtension.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ui/IWorkingCopyManagerExtension.java @@ -17,27 +17,34 @@ import org.eclipse.ui.IEditorInput; /** * Extension interface for IWorkingCopyManager. + * * @since 2.1 */ public interface IWorkingCopyManagerExtension { - + /** - * Sets the given working copy for the given editor input. If the given editor input - * is not connected to this working copy manager, this call has no effect.

- * This working copy manager does not assume the ownership of this working copy, i.e., - * the given working copy is not automatically be freed when this manager is shut down. + * Sets the given working copy for the given editor input. If the given + * editor input is not connected to this working copy manager, this call has + * no effect. + *

+ * This working copy manager does not assume the ownership of this working + * copy, i.e., the given working copy is not automatically be freed when + * this manager is shut down. * - * @param input the editor input - * @param workingCopy the working copy + * @param input + * the editor input + * @param workingCopy + * the working copy */ void setWorkingCopy(IEditorInput input, ICompilationUnit workingCopy); - + /** * Removes the working copy set for the given editor input. If there is no * working copy set for this input or this input is not connected to this * working copy manager, this call has no effect. * - * @param input the editor input + * @param input + * the editor input */ void removeWorkingCopy(IEditorInput input); }