/*=============================================================================# # Copyright (c) 2007-2016 Stephan Wahlbrink (WalWare.de) 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: # Stephan Wahlbrink - initial API and implementation #=============================================================================*/ package de.walware.statet.r.internal.ui.preferences; import org.eclipse.core.resources.IProject; import org.eclipse.core.runtime.CoreException; import de.walware.ecommons.preferences.ui.ConfigurationBlock; import de.walware.ecommons.preferences.ui.ManagedConfigurationBlock; import de.walware.ecommons.preferences.ui.PropertyAndPreferencePage; import de.walware.statet.r.core.RProjects; /** * A Property- and PreferencePage for RCodeStyle settings. */ public class RCodeStylePreferencePage extends PropertyAndPreferencePage { public static final String PREF_ID = "de.walware.statet.r.preferencePages.RCodeStyle"; //$NON-NLS-1$ public static final String PROP_ID = "de.walware.statet.r.propertyPages.RCodeStyle"; //$NON-NLS-1$ public RCodeStylePreferencePage() { } @Override protected String getPreferencePageID() { return PREF_ID; } @Override protected String getPropertyPageID() { return PROP_ID; } @Override protected boolean isProjectSupported(final IProject project) throws CoreException { return project.hasNature(RProjects.R_NATURE_ID); } @Override protected ConfigurationBlock createConfigurationBlock() throws CoreException { return new RCodeStylePreferenceBlock(getProject(), createStatusChangedListener()); } @Override protected boolean hasProjectSpecificSettings(final IProject project) { return ((ManagedConfigurationBlock) getBlock()).hasProjectSpecificOptions(project); } }