blob: 5d02da512d84dc57e00a108483eebbd1cc42d036 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 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.aspectj.org.eclipse.jdt.internal.codeassist.complete;
import org.aspectj.org.eclipse.jdt.internal.compiler.ast.ExportsStatement;
import org.aspectj.org.eclipse.jdt.internal.compiler.ast.ImportReference;
/**
*
* This class is independent of its parent class and is in fact a dummy ExportsStatement. Used to hook
* into the existing module declaration type and is used as a placeholder for keyword completion. This can
* be any module keyword completion and not necessarily related to exports statement.
*/
public class CompletionOnKeywordModuleInfo extends ExportsStatement implements CompletionOnKeyword {
private char[] token;
private char[][] possibleKeywords;
public CompletionOnKeywordModuleInfo(char[] token, long pos, char[][] possibleKeywords) {
super(new ImportReference(new char[][] {token}, new long[] {pos}, false, 0), null); // dummy
this.token = token;
this.possibleKeywords = possibleKeywords;
this.sourceStart = (int) (pos>>>32) ;
this.sourceEnd = (int) (pos & 0x00000000FFFFFFFFL);
}
@Override
public char[] getToken() {
return this.token;
}
@Override
public char[][] getPossibleKeywords() {
return this.possibleKeywords;
}
}