1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / spelling / engine / RankedWordProposal.java
index 9909796..282d05f 100644 (file)
@@ -28,13 +28,13 @@ public class RankedWordProposal implements Comparable {
         * Creates a new ranked word proposal.
         * 
         * @param text
-        *                   The text of this proposal
+        *            The text of this proposal
         * @param rank
-        *                   The rank of this proposal
+        *            The rank of this proposal
         */
        public RankedWordProposal(final String text, final int rank) {
-               fText= text;
-               fRank= rank;
+               fText = text;
+               fRank = rank;
        }
 
        /*
@@ -42,8 +42,8 @@ public class RankedWordProposal implements Comparable {
         */
        public final int compareTo(Object object) {
 
-               final RankedWordProposal word= (RankedWordProposal)object;
-               final int rank= word.getRank();
+               final RankedWordProposal word = (RankedWordProposal) object;
+               final int rank = word.getRank();
 
                if (fRank < rank)
                        return -1;
@@ -94,9 +94,9 @@ public class RankedWordProposal implements Comparable {
         * Sets the rank of the word.
         * 
         * @param rank
-        *                   The rank to set
+        *            The rank to set
         */
        public final void setRank(final int rank) {
-               fRank= rank;
+               fRank = rank;
        }
 }