Skip to main content
summaryrefslogtreecommitdiffstats
blob: 22aa3caeb3251ad8766a5ac51609957c7d4982e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*******************************************************************************
 * Copyright (c) 2016 Red Hat Inc. 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:
 *     Mickael Istria (Red Hat Inc.) - [251156] async content assist
 *******************************************************************************/
package org.eclipse.jface.text.contentassist;

import org.eclipse.jface.text.ITextViewer;

/**
 * A content assistant allowing multiple {@link IContentAssistProcessor}s and invoking their methods
 * asynchronously whenever possible.
 * @since 3.12
 */
public class AsyncContentAssistant extends ContentAssistant {

	@Override
	public void addContentAssistProcessor(IContentAssistProcessor processor, String contentType) {
		super.addContentAssistProcessor(processor, contentType);
	}

	@Override
	public void install(ITextViewer textViewer) {
		fViewer= textViewer;
		fContentAssistSubjectControlAdapter= new AsyncContentAssistSubjectControlAdapter(fViewer);
		install();
	}
}

Back to the top