Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/IWorkingCopyManager.java')
-rw-r--r--build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/IWorkingCopyManager.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/IWorkingCopyManager.java b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/IWorkingCopyManager.java
index 54af609a0b8..e22af906930 100644
--- a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/IWorkingCopyManager.java
+++ b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/IWorkingCopyManager.java
@@ -24,11 +24,11 @@ import org.eclipse.cdt.make.core.makefile.IMakefile;
* objects. The original unit is only given indirectly by means
* of an <code>IEditorInput</code>. The life cycle is as follows:
* <ul>
- * <li> <code>connect</code> creates and remembers a working copy of the
+ * <li> <code>connect</code> creates and remembers a working copy of the
* unit which is encoded in the given editor input</li>
- * <li> <code>getWorkingCopy</code> returns the working copy remembered on
+ * <li> <code>getWorkingCopy</code> returns the working copy remembered on
* <code>connect</code></li>
- * <li> <code>disconnect</code> destroys the working copy remembered on
+ * <li> <code>disconnect</code> destroys the working copy remembered on
* <code>connect</code></li>
* </ul>
* <p>
@@ -39,29 +39,29 @@ import org.eclipse.cdt.make.core.makefile.IMakefile;
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IWorkingCopyManager {
-
+
/**
* Connects the given editor input to this manager. After calling
* this method, a working copy will be available for the compilation unit encoded
* in the given editor input (does nothing if there is no encoded compilation unit).
*
* @param input the editor input
- * @exception CoreException if the working copy cannot be created for the
+ * @exception CoreException if the working copy cannot be created for the
* unit
*/
void connect(IEditorInput input) throws CoreException;
-
+
/**
* Disconnects the given editor input from this manager. After calling
* this method, a working copy for the compilation unit encoded
* in the given editor input will no longer be available. Does nothing if there
* is no encoded compilation unit, or if there is no remembered working copy for
* the compilation unit.
- *
+ *
* @param input the editor input
*/
void disconnect(IEditorInput input);
-
+
/**
* Returns the working copy remembered for the compilation unit encoded in the
* given editor input.
@@ -72,7 +72,7 @@ public interface IWorkingCopyManager {
* copy for this compilation unit
*/
IMakefile getWorkingCopy(IEditorInput input);
-
+
/**
* Shuts down this working copy manager. All working copies still remembered
* by this manager are destroyed.

Back to the top