removed unused import
diff --git a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/XSDActionBarContributor.java b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/XSDActionBarContributor.java
index e227044..f66de6e 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/XSDActionBarContributor.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/XSDActionBarContributor.java
@@ -26,7 +26,6 @@
 import org.eclipse.ui.IWorkbenchPage;
 import org.eclipse.ui.actions.ActionFactory;
 import org.eclipse.ui.actions.RetargetAction;
-import org.eclipse.ui.part.EditorActionBarContributor;
 import org.eclipse.ui.part.MultiPageEditorActionBarContributor;
 import org.eclipse.ui.texteditor.ITextEditor;
 import org.eclipse.ui.texteditor.ITextEditorActionConstants;
@@ -109,9 +108,6 @@
 
   private IMenuManager editMenu;
 
-  /*
-   * @see EditorActionBarContributor#contributeToMenu(IMenuManager)
-   */
   public void addToMenu(IMenuManager menuManager)
   {
     editMenu = menuManager.findMenuUsingPath(IWorkbenchActionConstants.M_EDIT);
@@ -127,10 +123,8 @@
     treeMenu.add(new Separator("group2"));
   }
 
-  /**
-   * @see EditorActionBarContributor#contributeToToolBar(IToolBarManager)
-   */
-  public void addToToolBar(IToolBarManager toolBarManager)
+
+public void addToToolBar(IToolBarManager toolBarManager)
   {
     toolBarManager.add(new Separator("XMLSchema.2"));
 //  Add retarget actions
diff --git a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/properties/DynamicCellEditor.java b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/properties/DynamicCellEditor.java
index 131f0f0..b09526a 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/properties/DynamicCellEditor.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/properties/DynamicCellEditor.java
@@ -11,7 +11,6 @@
 package org.eclipse.wst.xsd.ui.internal.properties;
 
 import org.eclipse.swt.SWT;
-import org.eclipse.swt.SWTError;
 import org.eclipse.swt.accessibility.ACC;
 import org.eclipse.swt.accessibility.AccessibleAdapter;
 import org.eclipse.swt.accessibility.AccessibleControlAdapter;
@@ -122,13 +121,13 @@
 *
 * @param string the new item
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when the string is null
-* @exception SWTError(ERROR_ITEM_NOT_ADDED)
+* @exception org.eclipse.swt.SWTError(ERROR_ITEM_NOT_ADDED)
 *	when the item cannot be added
 */
 public void add (String string) {
@@ -148,13 +147,13 @@
 * @param string the new item
 * @param index the index for the item
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when the string is null
-* @exception SWTError(ERROR_ITEM_NOT_ADDED)
+* @exception org.eclipse.swt.SWTError(ERROR_ITEM_NOT_ADDED)
 *	when the item cannot be added
 */
 public void add (String string, int index) {
@@ -168,11 +167,11 @@
 *
 * @param listener the listener
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when listener is null
 */
 public void addModifyListener (ModifyListener listener) {;
@@ -187,11 +186,11 @@
 *
 * @param listener the listener
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when listener is null
 */
 public void addSelectionListener(SelectionListener listener) {
@@ -235,9 +234,9 @@
 * Clears the current selection.
 * <p>
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
 */
 public void clearSelection () {
@@ -286,9 +285,9 @@
 *
 * @param index the index of the item
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
 */
 public void deselect (int index) {
@@ -302,9 +301,9 @@
 * If an item is selected, it is deselected.
 * If an item is not selected, it remains unselected.
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
 */
 public void deselectAll () {
@@ -354,11 +353,11 @@
 * @param index the index of the item
 * @return the item
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_CANNOT_GET_ITEM)
+* @exception org.eclipse.swt.SWTError(ERROR_CANNOT_GET_ITEM)
 *	when the operation fails
 */
 public String getItem (int index) {
@@ -373,11 +372,11 @@
 *
 * @return the number of items in the widget
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_CANNOT_GET_COUNT)
+* @exception org.eclipse.swt.SWTError(ERROR_CANNOT_GET_COUNT)
 *	when the operation fails
 */
 public int getItemCount () {
@@ -392,11 +391,11 @@
 *
 * @return the height of one item in the widget
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_CANNOT_GET_ITEM_HEIGHT)
+* @exception org.eclipse.swt.SWTError(ERROR_CANNOT_GET_ITEM_HEIGHT)
 *	when the operation fails
 */
 public int getItemHeight () {
@@ -411,11 +410,11 @@
 *
 * @return the items in the widget
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_CANNOT_GET_ITEM)
+* @exception org.eclipse.swt.SWTError(ERROR_CANNOT_GET_ITEM)
 *	when the operation fails
 */
 public String [] getItems () {
@@ -427,9 +426,9 @@
 * <p>
 * @return a point representing the selection start and end
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
 */
 public Point getSelection () {
@@ -444,9 +443,9 @@
 *
 * @return the index of the selected item.
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
 */
 public int getSelectionIndex () {
@@ -460,9 +459,9 @@
 *
 * @return the widget text
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
 */
 public String getText () {
@@ -477,11 +476,11 @@
 
 * @return the height of the combo's text field.
 * 
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_ERROR_CANNOT_GET_ITEM_HEIGHT)
+* @exception org.eclipse.swt.SWTError(ERROR_ERROR_CANNOT_GET_ITEM_HEIGHT)
 *	when the operation fails
 */
 public int getTextHeight () {
@@ -493,9 +492,9 @@
 * <p>
 * @return the text limit
 * 
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
 */
 public int getTextLimit () {
@@ -513,11 +512,11 @@
 * @param string the search item
 * @return the index of the item
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when string is null
 */
 public int indexOf (String string) {
@@ -537,11 +536,11 @@
 * @param index the starting position
 * @return the index of the item
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when string is null
 */
 public int indexOf (String string, int start) {
@@ -770,11 +769,11 @@
 * @param index the index of the item
 * @return the selection state
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_ITEM_NOT_REMOVED)
+* @exception org.eclipse.swt.SWTError(ERROR_ITEM_NOT_REMOVED)
 *	when the operation fails
 */
 public void remove (int index) {
@@ -795,11 +794,11 @@
 * @param start the start of the range
 * @param end the end of the range
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_ITEM_NOT_REMOVED)
+* @exception org.eclipse.swt.SWTError(ERROR_ITEM_NOT_REMOVED)
 *	when the operation fails
 */
 public void remove (int start, int end) {
@@ -814,13 +813,13 @@
 *
 * @param string the search item
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when string is null
-* @exception SWTError(ERROR_ITEM_NOT_REMOVED)
+* @exception org.eclipse.swt.SWTError(ERROR_ITEM_NOT_REMOVED)
 *	when the operation fails
 */
 public void remove (String string) {
@@ -831,9 +830,9 @@
 /**
 * Removes all items.
 * <p>
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
 */
 public void removeAll () {
@@ -847,11 +846,11 @@
 *
 * @param listener the listener
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when listener is null
 */
 public void removeModifyListener (ModifyListener listener) {
@@ -865,11 +864,11 @@
 *
 * @param listener the listener
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when listener is null
 */
 public void removeSelectionListener (SelectionListener listener) {
@@ -887,9 +886,9 @@
 *
 * @param index the index of the item
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
 */
 public void select (int index) {
@@ -940,13 +939,13 @@
 * @param index the index for the item
 * @param string the item
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when items is null
-* @exception SWTError(ERROR_ITEM_NOT_MODIFIED)
+* @exception org.eclipse.swt.SWTError(ERROR_ITEM_NOT_MODIFIED)
 *	when the operation fails
 */
 public void setItem (int index, String string) {
@@ -959,13 +958,13 @@
 *
 * @param items the array of items
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when items is null
-* @exception SWTError(ERROR_ITEM_NOT_ADDED)
+* @exception org.eclipse.swt.SWTError(ERROR_ITEM_NOT_ADDED)
 *	when the operation fails
 */
 public void setItems (String [] items) {
@@ -980,11 +979,11 @@
 *
 * @param selection point representing the start and the end of the new selection
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when selection is null
 */
 public void setSelection (Point selection) {
@@ -998,11 +997,11 @@
 *
 * @param string the widget text
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_NULL_ARGUMENT)
+* @exception org.eclipse.swt.SWTError(ERROR_NULL_ARGUMENT)
 *	when string is null
 */
 public void setText (String string) {
@@ -1024,11 +1023,11 @@
 * 
 * @param limit new text limit
 *
-* @exception SWTError(ERROR_THREAD_INVALID_ACCESS)
+* @exception org.eclipse.swt.SWTError(ERROR_THREAD_INVALID_ACCESS)
 *	when called from the wrong thread
-* @exception SWTError(ERROR_WIDGET_DISPOSED)
+* @exception org.eclipse.swt.SWTError(ERROR_WIDGET_DISPOSED)
 *	when the widget has been disposed
-* @exception SWTError(ERROR_CANNOT_BE_ZERO)
+* @exception org.eclipse.swt.SWTError(ERROR_CANNOT_BE_ZERO)
 *	when limit is 0
 */
 public void setTextLimit (int limit) {
diff --git a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/GlobalElementCleanup.java b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/GlobalElementCleanup.java
index 7d2f5d8..9719e39 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/GlobalElementCleanup.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/GlobalElementCleanup.java
@@ -13,7 +13,6 @@
 import java.util.Iterator;
 import java.util.List;
 
-import org.eclipse.wst.xsd.ui.internal.refactor.XSDVisitor;
 import org.eclipse.wst.xsd.ui.internal.util.TypesHelper;
 import org.eclipse.xsd.XSDConcreteComponent;
 import org.eclipse.xsd.XSDElementDeclaration;
@@ -56,7 +55,7 @@
   }
   
   /**
-   * @see XSDVisitor#visitElementDeclaration(XSDElementDeclaration)
+   * @see org.eclipse.wst.xsd.ui.internal.refactor.XSDVisitor#visitElementDeclaration(XSDElementDeclaration)
    */
   public void visitElementDeclaration(XSDElementDeclaration element)
   {
diff --git a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/GlobalSimpleOrComplexTypeCleanup.java b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/GlobalSimpleOrComplexTypeCleanup.java
index 2e8780f..2766767 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/GlobalSimpleOrComplexTypeCleanup.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/GlobalSimpleOrComplexTypeCleanup.java
@@ -13,7 +13,6 @@
 import java.text.MessageFormat;
 import java.util.Iterator;
 
-import org.eclipse.wst.xsd.ui.internal.refactor.XSDVisitor;
 import org.eclipse.wst.xsd.ui.internal.util.XSDDOMHelper;
 import org.eclipse.xsd.XSDAttributeDeclaration;
 import org.eclipse.xsd.XSDAttributeGroupContent;
@@ -37,7 +36,7 @@
   }
 
   /**
-   * @see XSDVisitor#visitElementDeclaration(XSDElementDeclaration)
+   * @see org.eclipse.wst.xsd.ui.internal.refactor.XSDVisitor#visitElementDeclaration(XSDElementDeclaration)
    */
   public void visitElementDeclaration(XSDElementDeclaration element)
   {
diff --git a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/XSDExternalFileCleanup.java b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/XSDExternalFileCleanup.java
index 4a2472f..aa40416 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/XSDExternalFileCleanup.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src/org/eclipse/wst/xsd/ui/internal/refactor/delete/XSDExternalFileCleanup.java
@@ -13,7 +13,6 @@
 import java.text.MessageFormat;
 import java.util.Iterator;
 
-import org.eclipse.wst.xsd.ui.internal.refactor.XSDVisitor;
 import org.eclipse.xsd.XSDAttributeDeclaration;
 import org.eclipse.xsd.XSDAttributeGroupContent;
 import org.eclipse.xsd.XSDAttributeGroupDefinition;
@@ -50,7 +49,7 @@
   protected String oldFilename;
   
   /**
-   * @see XSDVisitor#visitElementDeclaration(XSDElementDeclaration)
+   * @see org.eclipse.wst.xsd.ui.internal.refactor.XSDVisitor#visitElementDeclaration(XSDElementDeclaration)
    */
   public void visitElementDeclaration(XSDElementDeclaration element)
   {