removed unused import
diff --git a/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/datamodel/IDataModelOperation.java b/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/datamodel/IDataModelOperation.java
index 87cc589..5d833fb 100644
--- a/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/datamodel/IDataModelOperation.java
+++ b/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/datamodel/IDataModelOperation.java
@@ -11,7 +11,6 @@
 package org.eclipse.wst.common.frameworks.datamodel;
 
 import org.eclipse.core.commands.operations.IUndoableOperation;
-import org.eclipse.core.resources.IWorkspace;
 import org.eclipse.core.runtime.jobs.ISchedulingRule;
 import org.eclipse.wst.common.environment.IEnvironment;
 
@@ -73,7 +72,7 @@
 	/**
 	 * <p>
 	 * Returns the ISchedulingRule used for executing this job using
-	 * {@link IWorkspace#run(org.eclipse.core.resources.IWorkspaceRunnable, ISchedulingRule, int, org.eclipse.core.runtime.IProgressMonitor)}.
+	 * {@link org.eclipse.core.resources.IWorkspace#run(org.eclipse.core.resources.IWorkspaceRunnable, ISchedulingRule, int, org.eclipse.core.runtime.IProgressMonitor)}.
 	 * If <code>null</code> is returned, then IWorkspace.getRoot() is used as the ISchedulingRule
 	 * during execution.
 	 * </p>
@@ -81,7 +80,7 @@
 	 * @return the ISchedulingRule
 	 * 
 	 * @see #getOperationExecutionFlags()
-	 * @see IWorkspace#run(org.eclipse.core.resources.IWorkspaceRunnable, ISchedulingRule, int,
+	 * @see org.eclipse.core.resources.IWorkspace#run(org.eclipse.core.resources.IWorkspaceRunnable, ISchedulingRule, int,
 	 *      org.eclipse.core.runtime.IProgressMonitor)
 	 */
 	public ISchedulingRule getSchedulingRule();
@@ -89,13 +88,13 @@
 	/**
 	 * <p>
 	 * Returns the OperationExecutionFlags used for executing this Operation as a workspace job.
-	 * {@link IWorkspace#run(org.eclipse.core.resources.IWorkspaceRunnable, ISchedulingRule, int, org.eclipse.core.runtime.IProgressMonitor)}.
+	 * {@link org.eclipse.core.resources.IWorkspace#run(org.eclipse.core.resources.IWorkspaceRunnable, ISchedulingRule, int, org.eclipse.core.runtime.IProgressMonitor)}.
 	 * </p>
 	 * 
 	 * @return the OperationExecutionFlags
 	 * 
 	 * @see #getSchedulingRule()
-	 * @see IWorkspace#run(org.eclipse.core.resources.IWorkspaceRunnable, ISchedulingRule, int,
+	 * @seeorg.eclipse.core.resources.IWorkspace#run(org.eclipse.core.resources.IWorkspaceRunnable, ISchedulingRule, int,
 	 *      org.eclipse.core.runtime.IProgressMonitor)
 	 */
 	public int getOperationExecutionFlags();
diff --git a/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/datamodel/IDataModelPausibleOperation.java b/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/datamodel/IDataModelPausibleOperation.java
index 86b9cbb..008a637 100644
--- a/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/datamodel/IDataModelPausibleOperation.java
+++ b/plugins/org.eclipse.wst.common.frameworks/src/org/eclipse/wst/common/frameworks/internal/datamodel/IDataModelPausibleOperation.java
@@ -11,17 +11,15 @@
 package org.eclipse.wst.common.frameworks.internal.datamodel;
 
 import org.eclipse.core.commands.ExecutionException;
-import org.eclipse.core.commands.operations.IUndoableOperation;
 import org.eclipse.core.runtime.IAdaptable;
 import org.eclipse.core.runtime.IProgressMonitor;
 import org.eclipse.core.runtime.IStatus;
-import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
 import org.eclipse.wst.common.frameworks.datamodel.IDataModelOperation;
 
 /**
  * <p>
  * IDataModelManagerOperation is an IDataModelOperation returned from
- * {@link IDataModel#getDefaultOperation()}. This Operation wraps the IDataModelOperation returned
+ * {@linkorg.eclipse.wst.common.frameworks.datamodel.IDataModel#getDefaultOperation()}. This Operation wraps the IDataModelOperation returned
  * from the IDatModelProvider backing the IDataModel that created it.
  * </p>
  * <p>
@@ -95,7 +93,7 @@
  * This interface is not intended to be implemented by clients.
  * </p>
  * 
- * @see IDataModel#getDefaultOperation()
+ * @seeorg.eclipse.wst.common.frameworks.datamodel.IDataModel#getDefaultOperation()
  * 
  * @since 1.5
  */
@@ -107,7 +105,7 @@
 	 * state it may only be executed.
 	 * </p>
 	 * 
-	 * @see IUndoableOperation#execute(IProgressMonitor, IAdaptable)
+	 * @see org.eclipse.core.commands.operations.IUndoableOperation#execute(IProgressMonitor, IAdaptable)
 	 */
 	public static final int NOT_STARTED = 0;
 	/**
@@ -116,7 +114,7 @@
 	 * may only be paused by an {@link IDataModelPausibleOperationListener}.
 	 * </p>
 	 * 
-	 * @see IUndoableOperation#execute(IProgressMonitor, IAdaptable)
+	 * @see org.eclipse.core.commands.operations.IUndoableOperation#execute(IProgressMonitor, IAdaptable)
 	 * @see IDataModelPausibleOperationListener
 	 */
 	public static final int RUNNING_EXECUTE = 1;
@@ -136,7 +134,7 @@
 	 * may only be paused by an {@link IDataModelPausibleOperationListener}.
 	 * </p>
 	 * 
-	 * @see IUndoableOperation#undo(IProgressMonitor, IAdaptable)
+	 * @see org.eclipse.core.commands.operations.IUndoableOperation#undo(IProgressMonitor, IAdaptable)
 	 * @see IDataModelPausibleOperationListener
 	 */
 	public static final int RUNNING_UNDO = 3;
@@ -146,7 +144,7 @@
 	 * may only be paused by an {@link IDataModelPausibleOperationListener}.
 	 * </p>
 	 * 
-	 * @see IUndoableOperation#redo(IProgressMonitor, IAdaptable)
+	 * @see org.eclipse.core.commands.operations.IUndoableOperation#redo(IProgressMonitor, IAdaptable)
 	 * @see IDataModelPausibleOperationListener
 	 */
 	public static final int RUNNING_REDO = 4;
@@ -169,7 +167,7 @@
 	 * </p>
 	 * 
 	 * @see #resume(IProgressMonitor, IAdaptable)
-	 * @see IUndoableOperation#execute(IProgressMonitor, IAdaptable)
+	 * @see org.eclipse.core.commands.operations.IUndoableOperation#execute(IProgressMonitor, IAdaptable)
 	 */
 	public static final int PAUSED_ROLLBACK = 6;
 	/**
@@ -196,7 +194,7 @@
 	 * state it may only be undone.
 	 * </p>
 	 * 
-	 * @see IUndoableOperation#undo(IProgressMonitor, IAdaptable)
+	 * @see org.eclipse.core.commands.operations.IUndoableOperation#undo(IProgressMonitor, IAdaptable)
 	 */
 	public static final int COMPLETE_EXECUTE = 9;
 	/**
@@ -205,7 +203,7 @@
 	 * state it may only be executed.
 	 * </p>
 	 * 
-	 * @see IUndoableOperation#execute(IProgressMonitor, IAdaptable)
+	 * @see org.eclipse.core.commands.operations.IUndoableOperation#execute(IProgressMonitor, IAdaptable)
 	 */
 	public static final int COMPLETE_ROLLBACK = 10;
 	/**
@@ -214,7 +212,7 @@
 	 * it may only be redone.
 	 * </p>
 	 * 
-	 * @see IUndoableOperation#redo(IProgressMonitor, IAdaptable)
+	 * @see org.eclipse.core.commands.operations.IUndoableOperation#redo(IProgressMonitor, IAdaptable)
 	 */
 	public static final int COMPLETE_UNDO = 11;
 	/**
@@ -223,7 +221,7 @@
 	 * it may only be udone.
 	 * </p>
 	 * 
-	 * @see IUndoableOperation#undo(IProgressMonitor, IAdaptable)
+	 * @see org.eclipse.core.commands.operations.IUndoableOperation#undo(IProgressMonitor, IAdaptable)
 	 */
 	public static final int COMPLETE_REDO = 12;