1 /*******************************************************************************
2 * Copyright (c) 2000, 2004 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.internal.ui.text.template.contentassist;
14 //import org.eclipse.jface.text.Assert;
15 import org.eclipse.core.runtime.Assert;
16 import org.eclipse.jface.text.IDocument;
17 import org.eclipse.jface.text.contentassist.ICompletionProposal;
18 import org.eclipse.jface.text.link.LinkedPositionGroup;
19 import org.eclipse.jface.text.link.ProposalPosition;
24 public class VariablePosition extends ProposalPosition {
26 private MultiVariableGuess fGuess;
28 private MultiVariable fVariable;
30 public VariablePosition(IDocument document, int offset, int length,
31 MultiVariableGuess guess, MultiVariable variable) {
32 this(document, offset, length, LinkedPositionGroup.NO_STOP, guess,
36 public VariablePosition(IDocument document, int offset, int length,
37 int sequence, MultiVariableGuess guess, MultiVariable variable) {
38 super(document, offset, length, sequence, null);
39 Assert.isNotNull(guess);
40 Assert.isNotNull(variable);
46 * @see org.eclipse.jface.text.link.ProposalPosition#equals(java.lang.Object)
48 public boolean equals(Object o) {
49 if (o instanceof VariablePosition && super.equals(o)) {
50 return fGuess.equals(((VariablePosition) o).fGuess);
56 * @see org.eclipse.jface.text.link.ProposalPosition#hashCode()
58 public int hashCode() {
59 return super.hashCode() | fGuess.hashCode();
63 * @see org.eclipse.jface.text.link.ProposalPosition#getChoices()
65 public ICompletionProposal[] getChoices() {
66 return fGuess.getProposals(fVariable, offset, length);
72 public MultiVariable getVariable() {