diff --git a/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/ProgressServiceImpl.java b/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/ProgressServiceImpl.java
index 5feb3ff569b..ee3e456d967 100644
--- a/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/ProgressServiceImpl.java
+++ b/bundles/org.eclipse.e4.ui.progress/src/org/eclipse/e4/ui/progress/internal/ProgressServiceImpl.java
@@ -302,7 +302,7 @@ private void setUserInterfaceActive(boolean active) {
}
}
} else {
- // Deactive shells in reverse order
+ // Deactivate shells in reverse order
for (int i = shells.length - 1; i >= 0; i--) {
if (!shells[i].isDisposed()) {
shells[i].setEnabled(active);
diff --git a/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ContentViewer.java b/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ContentViewer.java
index 50b229818d0..e4b77e1ceb6 100644
--- a/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ContentViewer.java
+++ b/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/ContentViewer.java
@@ -256,7 +256,7 @@ public void setContentProvider(IContentProvider contentProvider) {
* The ContentViewer implementation of this Viewer
* method invokes inputChanged on the content provider and then the
* inputChanged hook method. This method fails if this viewer does
- * not have a content provider. Subclassers are advised to override
+ * not have a content provider. Subclasses are advised to override
* inputChanged rather than this method, but may extend this method
* if required.
*/
diff --git a/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java b/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java
index 153ca92b2bb..5b1ab4432d3 100644
--- a/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java
+++ b/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java
@@ -1852,8 +1852,8 @@ public Widget[] testFindItems(Object element) {
/**
* Removes all elements from the map.
*
- * This method is internal to the framework; subclassers should not call - * this method. + * This method is internal to the framework; subclasses should not call this + * method. *
*/ protected void unmapAllElements() { @@ -1881,17 +1881,16 @@ protected void unmapElement(Object element) { } /** - * Removes the given association from the internal element to widget map. - * Does nothing if mapping is disabled, or if the given element does not map - * to the given item. + * Removes the given association from the internal element to widget map. Does + * nothing if mapping is disabled, or if the given element does not map to the + * given item. *- * This method is internal to the framework; subclassers should not call - * this method. + * This method is internal to the framework; subclasses should not call this + * method. *
* - * @param element - * the element - * @param item the item to unmap + * @param element the element + * @param item the item to unmap * @since 2.0 */ protected void unmapElement(Object element, Widget item) { @@ -2101,14 +2100,12 @@ protected void internalUpdate(Widget widget, Object element, String[] properties /** * Copies attributes of the given element into the given widget. *
- * This method is internal to the framework; subclassers should not call
- * this method. Calls doUpdateItem(widget, element, true).
+ * This method is internal to the framework; subclasses should not call this
+ * method. Calls doUpdateItem(widget, element, true).
*