blob: 2818d6d68640b487144c6138ab3dbd0904c4605d [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.select;
import org.eclipse.jdt.core.compiler.CharOperation;
import org.eclipse.jdt.internal.compiler.ast.ParameterizedQualifiedTypeReference;
import org.eclipse.jdt.internal.compiler.ast.TypeReference;
import org.eclipse.jdt.internal.compiler.lookup.BlockScope;
import org.eclipse.jdt.internal.compiler.lookup.ClassScope;
import org.eclipse.jdt.internal.compiler.lookup.ParameterizedTypeBinding;
import org.eclipse.jdt.internal.compiler.lookup.RawTypeBinding;
import org.eclipse.jdt.internal.compiler.lookup.TypeBinding;
public class SelectionOnParameterizedQualifiedTypeReference extends ParameterizedQualifiedTypeReference {
public SelectionOnParameterizedQualifiedTypeReference(char[][] previousIdentifiers, char[] selectionIdentifier, TypeReference[][] typeArguments, TypeReference[] assistTypeArguments, long[] positions) {
super(
CharOperation.arrayConcat(previousIdentifiers, selectionIdentifier),
typeArguments,
0,
positions);
int length = this.typeArguments.length;
System.arraycopy(this.typeArguments, 0, this.typeArguments = new TypeReference[length + 1][], 0, length);
this.typeArguments[length] = assistTypeArguments;
}
public TypeBinding resolveType(BlockScope scope, boolean checkBounds) {
super.resolveType(scope, checkBounds);
if(this.resolvedType != null && this.resolvedType.isRawType()) {
ParameterizedTypeBinding parameterizedTypeBinding = scope.createParameterizedType(((RawTypeBinding)this.resolvedType).type, new TypeBinding[0], this.resolvedType.enclosingType());
throw new SelectionNodeFound(parameterizedTypeBinding);
}
throw new SelectionNodeFound(this.resolvedType);
}
public TypeBinding resolveType(ClassScope scope) {
super.resolveType(scope);
if(this.resolvedType != null && this.resolvedType.isRawType()) {
ParameterizedTypeBinding parameterizedTypeBinding = scope.createParameterizedType(((RawTypeBinding)this.resolvedType).type, new TypeBinding[0], this.resolvedType.enclosingType());
throw new SelectionNodeFound(parameterizedTypeBinding);
}
throw new SelectionNodeFound(this.resolvedType);
}
public StringBuffer printExpression(int indent, StringBuffer output) {
output.append("<SelectOnType:");//$NON-NLS-1$
int length = tokens.length;
for (int i = 0; i < length; i++) {
if(i != 0) {
output.append('.');
}
output.append(tokens[i]);
TypeReference[] typeArgument = typeArguments[i];
if (typeArgument != null) {
output.append('<');//$NON-NLS-1$
int max = typeArgument.length - 1;
for (int j = 0; j < max; j++) {
typeArgument[j].print(0, output);
output.append(", ");//$NON-NLS-1$
}
typeArgument[max].print(0, output);
output.append('>');
}
}
output.append('>');
return output;
}
}