blob: ce40f9f01876c8883aa8c8626d9ef68f258ba093 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*
*******************************************************************************/
package org.aspectj.org.eclipse.jdt.internal.codeassist.complete;
import org.aspectj.org.eclipse.jdt.core.compiler.CharOperation;
/*
* Completion node build by the parser in any case it was intending to
* reduce an exports or an opens reference containing the cursor location.
* e.g.
*
* module myModule {
* exports packageo[cursor];
* opens packageo[cursor];
* }
*
* module myModule {
* ---> <CompleteOnPackageVisibilityReference:packageo>
* }
*
* The source range is always of length 0.
* The arguments of the allocation expression are all the arguments defined
* before the cursor.
*/
public class CompletionOnPackageVisibilityReference extends CompletionOnImportReference {
String pkgName;
public CompletionOnPackageVisibilityReference(char[][] ident, long[] pos) {
super(ident, pos, 0);
this.pkgName = new String(CharOperation.concatWith(ident, '.'));
}
@Override
public StringBuffer print(int indent, StringBuffer output) {
printIndent(indent, output).append("<CompleteOnPackageVisibilityReference:"); //$NON-NLS-1$
output.append(this.pkgName);
return output.append('>');
}
}