blob: 1f7e313392676a51564d5d834f64f7efe2710497 [file] [log] [blame]
package org.eclipse.jdt.internal.codeassist.complete;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/*
* Completion node build by the parser in any case it was intending to
* reduce an package statement containing the cursor location.
* e.g.
*
* package java.io[cursor];
* class X {
* void foo() {
* }
* }
*
* ---> <CompleteOnPackage:java.io>
* class X {
* void foo() {
* }
* }
*
* The source range is always of length 0.
* The arguments of the allocation expression are all the arguments defined
* before the cursor.
*/
import org.eclipse.jdt.internal.compiler.ast.*;
public class CompletionOnPackageReference extends ImportReference {
public CompletionOnPackageReference(char[][] tokens , long[] positions) {
super(tokens, positions, true);
}
public String toString(int tab, boolean withOnDemand) {
StringBuffer buffer = new StringBuffer(tabString(tab));
buffer. append("<CompleteOnPackage:"/*nonNLS*/);
for (int i = 0; i < tokens.length; i++) {
buffer.append(tokens[i]);
if (i < (tokens.length - 1)) {
buffer.append("."/*nonNLS*/);
}
}
buffer.append(">"/*nonNLS*/);
return buffer.toString();
}
}