blob: cf2de0a4af2087bffd45c8af97e8ea87c5e5b0c7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.codeassist.complete;
/*
* Completion node build by the parser in any case it was intending to
* reduce a type reference containing the completion identifier as part
* of a qualified name.
* e.g.
*
* class X extends java.lang.Obj[cursor]
*
* ---> class X extends <CompleteOnType:java.lang.Obj>
*
* The source range of the completion node denotes the source range
* which should be replaced by the completion.
*/
import org.eclipse.jdt.internal.compiler.ast.*;
import org.eclipse.jdt.internal.compiler.lookup.*;
public class CompletionOnQualifiedTypeReference extends QualifiedTypeReference {
public char[] completionIdentifier;
public CompletionOnQualifiedTypeReference(char[][] previousIdentifiers, char[] completionIdentifier, long[] positions) {
super(previousIdentifiers, positions);
this.completionIdentifier = completionIdentifier;
}
public void aboutToResolve(Scope scope) {
getTypeBinding(scope);
}
/*
* No expansion of the completion reference into an array one
*/
public TypeReference copyDims(int dim){
return this;
}
protected TypeBinding getTypeBinding(Scope scope) {
// it can be a package, type or member type
Binding binding = scope.parent.getTypeOrPackage(tokens); // step up from the ClassScope
if (!binding.isValidBinding()) {
scope.problemReporter().invalidType(this, (TypeBinding) binding);
throw new CompletionNodeFound();
}
throw new CompletionNodeFound(this, binding, scope);
}
public StringBuffer printExpression(int indent, StringBuffer output) {
output.append("<CompleteOnType:"); //$NON-NLS-1$
for (int i = 0; i < tokens.length; i++) {
output.append(tokens[i]);
output.append('.');
}
output.append(completionIdentifier).append('>');
return output;
}
}