Bug 570011 - Fix <pre/> markup
Bug 571184 - Bug 571040 - Fix class method wordings

Change-Id: If014b1f158f9cf5a2e4eceb3267157bd938c753c
Signed-off-by: Fabrice Tiercelin <fabrice.tiercelin@yahoo.fr>
Depends-On: I8e1532d6b156b1bd2782d985706e6f898fc818a2
diff --git a/4.19/images/comparison-zero-preferences.png b/4.19/images/comparison-zero-preferences.png
index 270abf4..a72aff9 100644
--- a/4.19/images/comparison-zero-preferences.png
+++ b/4.19/images/comparison-zero-preferences.png
Binary files differ
diff --git a/4.19/images/convert-fields-preferences.png b/4.19/images/convert-fields-preferences.png
index 25b3e1a..91de8d0 100644
--- a/4.19/images/convert-fields-preferences.png
+++ b/4.19/images/convert-fields-preferences.png
Binary files differ
diff --git a/4.19/images/invert-equals-preferences.png b/4.19/images/invert-equals-preferences.png
index d2f9089..8601605 100644
--- a/4.19/images/invert-equals-preferences.png
+++ b/4.19/images/invert-equals-preferences.png
Binary files differ
diff --git a/4.19/images/primitive-comparison-preferences.png b/4.19/images/primitive-comparison-preferences.png
index 57394e8..7aefd32 100644
--- a/4.19/images/primitive-comparison-preferences.png
+++ b/4.19/images/primitive-comparison-preferences.png
Binary files differ
diff --git a/4.19/images/primitive-parsing-preferences.png b/4.19/images/primitive-parsing-preferences.png
index 41ec0e5..a6ae4dd 100644
--- a/4.19/images/primitive-parsing-preferences.png
+++ b/4.19/images/primitive-parsing-preferences.png
Binary files differ
diff --git a/4.19/images/static-inner-class-preferences.png b/4.19/images/static-inner-class-preferences.png
index 8d4bc93..4817895 100644
--- a/4.19/images/static-inner-class-preferences.png
+++ b/4.19/images/static-inner-class-preferences.png
Binary files differ
diff --git a/4.19/images/string-replace-preferences.png b/4.19/images/string-replace-preferences.png
index 55044a2..cc19b09 100644
--- a/4.19/images/string-replace-preferences.png
+++ b/4.19/images/string-replace-preferences.png
Binary files differ
diff --git a/4.19/jdt.html b/4.19/jdt.html
index ce4d586..cbd1853 100644
--- a/4.19/jdt.html
+++ b/4.19/jdt.html
@@ -106,27 +106,27 @@
         But let's look at this code:
       </p>
       <p>
-        <pre>int i = j++;</pre>
+        <div style="display: block;unicode-bidi: embed;font-family: monospace;white-space: pre;">int i = j++;</div>
       </p>
       <p>
         Most of the developers hardly remember which from the increment or the assignment comes first. One way to make the code obvious is to write the increment/decrement in a dedicated statement:
       </p>
       <p>
-        <pre>int i = j;
-j++;</pre>
+        <div style="display: block;unicode-bidi: embed;font-family: monospace;white-space: pre;">int i = j;
+j++;</div>
       </p>
       <p>
         And so for the prefix expressions:
       </p>
       <p>
-        <pre>int i = ++j;</pre>
+        <div style="display: block;unicode-bidi: embed;font-family: monospace;white-space: pre;">int i = ++j;</div>
       </p>
       <p>
         ...it goes like this:
       </p>
       <p>
-        <pre>j++;
-int i = j;</pre>
+        <div style="display: block;unicode-bidi: embed;font-family: monospace;white-space: pre;">j++;
+int i = j;</div>
       </p>
       <p>
         The cleanup moves a prefix expression above the statement and a postfix expression below.
@@ -272,14 +272,14 @@
   </tr>
 
   <tr id="string-replace"> <!-- https://bugs.eclipse.org/bugs/show_bug.cgi?id=571040 -->
-    <td class="title"><a href="#string-replace">Use String::replace</a></td>
+    <td class="title"><a href="#string-replace">Use String.replace()</a></td>
     <td class="content">
       A new clean up has been added that replaces <code>String.replaceAll()</code> by <code>String.replace()</code> when the pattern is a plain text.
       <p>
         The pattern must be constant.
       </p>
       <p>
-        To apply the clean up, select <b>Use String::replace instead of String::replaceAll when no regex used</b> check box on the <b>Optimization</b> tab in your clean up profile.
+        To apply the clean up, select <b>Use String.replace() instead of String.replaceAll() when no regex used</b> check box on the <b>Optimization</b> tab in your clean up profile.
       </p>
       <p><img src="images/string-replace-preferences.png" alt="Preferences" width="800 px"/></p>
       <p>
@@ -467,7 +467,7 @@
   </tr>
 
   <tr id="invert-equals"> <!-- https://bugs.eclipse.org/bugs/show_bug.cgi?id=571184 -->
-    <td class="title"><a href="#invert-equals">Object::equals on non null</a></td>
+    <td class="title"><a href="#invert-equals">Object.equals() on non null</a></td>
     <td class="content">
       A new clean up has been added that inverts calls to <code>Object.equals(Object)</code> and <code>String.equalsIgnoreCase(String)</code> to avoid useless null pointer exception.
       </p>
@@ -481,7 +481,7 @@
         Beware! By avoiding null pointer exceptions, the behavior may change!
       </p>
       <p>
-        To apply the clean up, select <b>Avoid Object::equals or String::equalsIgnoreCase on null objects</b> check box on the <b>Source Fixing</b> tab in your clean up profile.
+        To apply the clean up, select <b>Avoid Object.equals() or String.equalsIgnoreCase() on null objects</b> check box on the <b>Source Fixing</b> tab in your clean up profile.
       </p>
       <p><img src="images/invert-equals-preferences.png" alt="Preferences" width="800 px"/></p>
       <p>