/******************************************************************************* * Copyright (c) 2003, 2006 IBM Corporation 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: * QNX Software Systems - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.ui.dialogs; import org.eclipse.core.resources.IProject; import org.eclipse.core.runtime.Preferences; public interface ICOptionContainer { void updateContainer(); IProject getProject(); /** * Returns the preference store. * * @return the preference store, or <code>null</code> if none */ public Preferences getPreferences(); }