blob: 71bdcf221dd2c90cf65feadb00ff8c23c94c52a3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Fabian Pfaff 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:
* Fabian Pfaff - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.ide;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeoutException;
import org.eclipse.jface.fieldassist.ContentProposalAdapter;
import org.eclipse.jface.tests.fieldassist.ComboFieldAssistWindow;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Control;
/**
* @since 3.5
*
*/
public class DirectoryProposalContentAssistWindow extends ComboFieldAssistWindow {
protected static class DirectoryProposalContentAssistTestExtension extends DirectoryProposalContentAssist {
@Override
public void wait(int timeout) throws InterruptedException, ExecutionException, TimeoutException {
super.wait(timeout);
}
}
private DirectoryProposalContentAssistTestExtension contentAssist;
@Override
protected ContentProposalAdapter createContentProposalAdapter(Control control) {
contentAssist = new DirectoryProposalContentAssistTestExtension();
contentAssist.apply((Combo) control);
return contentAssist.getContentProposalAdapter();
}
@Override
public ContentProposalAdapter getContentProposalAdapter() {
return super.getContentProposalAdapter();
}
public DirectoryProposalContentAssistTestExtension getContentAssist() {
return contentAssist;
}
}