blob: 72d1f280eefde3055ac661dcb6845b072fd1ebac [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;
public class CompletionOnQualifiedInterfaceReference extends CompletionOnQualifiedTypeReference {
public CompletionOnQualifiedInterfaceReference(char[][] previousIdentifiers, char[] completionIdentifier, long[] positions) {
super(previousIdentifiers, completionIdentifier, positions);
}
public StringBuffer printExpression(int indent, StringBuffer output) {
output.append("<CompleteOnInterface:"); //$NON-NLS-1$
for (int i = 0; i < tokens.length; i++) {
output.append(tokens[i]);
output.append('.');
}
output.append(completionIdentifier).append('>');
return output;
}
}