Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d0d3cfded9f62527ae1e0d9cc6fc98ca6f453122 (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
/*******************************************************************************
 * 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;

class AsyncContentAssistSubjectControlAdapter extends ContentAssistSubjectControlAdapter {

	public AsyncContentAssistSubjectControlAdapter(ITextViewer viewer) {
		super(viewer);
	}
	
	@Override
	CompletionProposalPopup createCompletionProposalPopup(ContentAssistant contentAssistant, AdditionalInfoController controller) {
		if (fContentAssistSubjectControl != null)
			return new AsyncCompletionProposalPopup(contentAssistant, fContentAssistSubjectControl, controller);
		return new AsyncCompletionProposalPopup(contentAssistant, fViewer, controller);
	}

}

Back to the top