X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/link/ProposalPosition.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/link/ProposalPosition.java index 13f73c5..b265de9 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/link/ProposalPosition.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/text/link/ProposalPosition.java @@ -12,7 +12,6 @@ package net.sourceforge.phpdt.internal.ui.text.link; import java.util.Arrays; -//import net.sourceforge.phpdt.internal.ui.text.java.JavaCompletionProposal; import org.eclipse.jface.text.TypedPosition; import org.eclipse.jface.text.contentassist.ICompletionProposal; @@ -20,8 +19,11 @@ import org.eclipse.jface.text.contentassist.ICompletionProposal; * */ public class ProposalPosition extends TypedPosition { - - /** The choices available for this position, fChoices[0] is the original type. */ + + /** + * The choices available for this position, fChoices[0] is the original + * type. + */ private final ICompletionProposal[] fChoices; /* @@ -30,39 +32,41 @@ public class ProposalPosition extends TypedPosition { public boolean equals(Object o) { if (o instanceof ProposalPosition) { if (super.equals(o)) { - return Arrays.equals(fChoices, ((ProposalPosition)o).fChoices); + return Arrays.equals(fChoices, ((ProposalPosition) o).fChoices); } } return false; } - + /** * @param offset * @param length * @param type */ - public ProposalPosition(int offset, int length, String type, ICompletionProposal[] choices) { + public ProposalPosition(int offset, int length, String type, + ICompletionProposal[] choices) { super(offset, length, type); - fChoices= new ICompletionProposal[choices.length]; + fChoices = new ICompletionProposal[choices.length]; System.arraycopy(choices, 0, fChoices, 0, choices.length); } - + /** * - * @return an array of choices, including the initial one. Clients must not modify it. + * @return an array of choices, including the initial one. Clients must not + * modify it. */ - public ICompletionProposal[] getChoices() { - updateChoicePositions(); - return fChoices; - } +// public ICompletionProposal[] getChoices() { +// updateChoicePositions(); +// return fChoices; +// } /** * */ - private void updateChoicePositions() { - for (int i= 0; i < fChoices.length; i++) { -// if (fChoices[i] instanceof JavaCompletionProposal) -// ((JavaCompletionProposal)fChoices[i]).setReplacementOffset(offset); - } - } +// private void updateChoicePositions() { +// for (int i = 0; i < fChoices.length; i++) { +// // if (fChoices[i] instanceof JavaCompletionProposal) +// // ((JavaCompletionProposal)fChoices[i]).setReplacementOffset(offset); +// } +// } }