blob: 2d4553275dcb5585002ae0cff8e1b02aa24afef0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2012 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
* Paul Fullbright <paul.fullbright@oracle.com> - content assist category enablement - http://bugs.eclipse.org/345213
*******************************************************************************/
package org.eclipse.jdt.internal.ui.javaeditor;
import java.util.Collection;
import java.util.Iterator;
import org.eclipse.core.runtime.Assert;
import org.eclipse.jface.text.ITextOperationTarget;
import org.eclipse.jface.text.source.ISourceViewer;
import org.eclipse.ui.texteditor.ITextEditor;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.internal.ui.text.java.CompletionProposalCategory;
import org.eclipse.jdt.internal.ui.text.java.CompletionProposalComputerRegistry;
/**
* A content assist executor can invoke content assist for a specific proposal category on an editor.
*
* @since 3.2
*/
public final class SpecificContentAssistExecutor {
private final CompletionProposalComputerRegistry fRegistry;
/**
* Creates a new executor.
*
* @param registry the computer registry to use for the enablement of proposal categories
*/
public SpecificContentAssistExecutor(CompletionProposalComputerRegistry registry) {
Assert.isNotNull(registry);
fRegistry= registry;
}
/**
* Invokes content assist on <code>editor</code>, showing only proposals computed by the
* <code>CompletionProposalCategory</code> with the given <code>categoryId</code>.
*
* @param editor the editor to invoke code assist on
* @param categoryId the id of the proposal category to show proposals for
*/
public void invokeContentAssist(final ITextEditor editor, String categoryId) {
Collection<CompletionProposalCategory> categories= fRegistry.getProposalCategories();
boolean[] inclusionState= new boolean[categories.size()];
boolean[] separateState= new boolean[categories.size()];
boolean[] enabledState= new boolean[categories.size()];
IJavaProject javaProject = EditorUtility.getJavaProject(editor.getEditorInput());
int i= 0;
for (Iterator<CompletionProposalCategory> it= categories.iterator(); it.hasNext(); i++) {
CompletionProposalCategory cat= it.next();
inclusionState[i]= cat.isIncluded();
cat.setIncluded(cat.getId().equals(categoryId));
separateState[i]= cat.isSeparateCommand();
cat.setSeparateCommand(false);
enabledState[i]= cat.isEnabled();
cat.setEnabled(cat.isEnabled() && cat.matches(javaProject));
}
try {
ITextOperationTarget target= editor.getAdapter(ITextOperationTarget.class);
if (target != null && target.canDoOperation(ISourceViewer.CONTENTASSIST_PROPOSALS))
target.doOperation(ISourceViewer.CONTENTASSIST_PROPOSALS);
} finally {
i= 0;
for (Iterator<CompletionProposalCategory> it= categories.iterator(); it.hasNext(); i++) {
CompletionProposalCategory cat= it.next();
cat.setIncluded(inclusionState[i]);
cat.setSeparateCommand(separateState[i]);
cat.setEnabled((enabledState[i]));
}
}
}
}