A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / template / contentassist / VariablePosition.java
index 5edace0..6bf87f2 100644 (file)
@@ -16,28 +16,30 @@ import org.eclipse.jface.text.contentassist.ICompletionProposal;
 import org.eclipse.jface.text.link.LinkedPositionGroup;
 import org.eclipse.jface.text.link.ProposalPosition;
 
-
 /**
  * 
  */
 public class VariablePosition extends ProposalPosition {
 
        private MultiVariableGuess fGuess;
+
        private MultiVariable fVariable;
 
-       public VariablePosition(IDocument document, int offset, int length, MultiVariableGuess guess, MultiVariable variable) {
-               this(document, offset, length, LinkedPositionGroup.NO_STOP, guess, variable);
+       public VariablePosition(IDocument document, int offset, int length,
+                       MultiVariableGuess guess, MultiVariable variable) {
+               this(document, offset, length, LinkedPositionGroup.NO_STOP, guess,
+                               variable);
        }
-       
-       public VariablePosition(IDocument document, int offset, int length, int sequence, MultiVariableGuess guess, MultiVariable variable) {
+
+       public VariablePosition(IDocument document, int offset, int length,
+                       int sequence, MultiVariableGuess guess, MultiVariable variable) {
                super(document, offset, length, sequence, null);
                Assert.isNotNull(guess);
                Assert.isNotNull(variable);
-               fVariable= variable;
-               fGuess= guess;
+               fVariable = variable;
+               fGuess = guess;
        }
-       
-       
+
        /*
         * @see org.eclipse.jface.text.link.ProposalPosition#equals(java.lang.Object)
         */
@@ -47,14 +49,14 @@ public class VariablePosition extends ProposalPosition {
                }
                return false;
        }
-       
+
        /*
         * @see org.eclipse.jface.text.link.ProposalPosition#hashCode()
         */
        public int hashCode() {
                return super.hashCode() | fGuess.hashCode();
        }
-       
+
        /*
         * @see org.eclipse.jface.text.link.ProposalPosition#getChoices()
         */
@@ -68,5 +70,5 @@ public class VariablePosition extends ProposalPosition {
        public MultiVariable getVariable() {
                return fVariable;
        }
-       
+
 }