blob: bf7a6a787bc8a3f38587bd8d11c403a9cf09cd38 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2009, 2021 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.r.console.ui.page;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.statet.ecommons.preferences.ui.ConfigurationBlock;
import org.eclipse.statet.ecommons.preferences.ui.ConfigurationBlockPreferencePage;
import org.eclipse.statet.internal.r.ui.RUIPlugin;
import org.eclipse.statet.ltk.ui.sourceediting.assist.AdvancedContentAssistConfigurationBlock;
public class AdvancedContentAssistConfigurationPage extends ConfigurationBlockPreferencePage {
/**
* Created by extension point
*/
public AdvancedContentAssistConfigurationPage() {
}
@Override
protected ConfigurationBlock createConfigurationBlock() throws CoreException {
return new AdvancedContentAssistConfigurationBlock(
RUIPlugin.getInstance().getRConsoleContentAssistRegistry(),
createStatusChangedListener());
}
}