1 /******************************************************************************* 2 * Copyright (c) 2000, 2007 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.jdt.internal.ui.preferences; 12 13 /** 14 * Interface for preference and property configuration blocks which can either be 15 * wrapped by a {@link org.eclipse.jdt.internal.ui.preferences.AbstractConfigurationBlockPreferenceAndPropertyPage} 16 * or be included some preference page. 17 * <p> 18 * Clients may implement this interface. 19 * </p> 20 * 21 * @since 3.3 22 */ 23 public interface IPreferenceAndPropertyConfigurationBlock extends IPreferenceConfigurationBlock { 24 25 /** 26 * Disable project specific settings for the settings configured by this block. 27 */ 28 public abstract void disableProjectSettings(); 29 30 /** 31 * Enabled project specific settings for the settings configured by this block. 32 */ 33 public abstract void enableProjectSettings(); 34 35 } 36