Contributions to this extension point define specific dialog for new configuration creation. This dialog will be called from "Manage configurations" screen instead of standard (independent of managed build system) dialog. <br> Contributed extension is usually provided with whole managed build system (MBS), so new dialog may be able to handle some MBS-specific features.<br> To disinguish numerous dialogs for separate MBSs, mbs_id element should be the same as corresponding MBS Id. class - New configuration dialog class.<br> Should implement org.eclipse.cdt.ui.newui.INewCfgDialog interface title - initial title of New configuration dialog. This element should contain ID of corresponding managed buld system (MBS).<br> Dialog will be displayed only if MBS Id for current project equals to mbs_id. 4.0 <extension point="org.eclipse.cdt.ui.newCfgDialog"> <dialog class="org.eclipse.cdt.managedbuilder.ui.newui.NewCfgDialog" mbs_id="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" title="MBS: create configuration"/> </extension> "class" element should implement org.eclipse.cdt.ui.newui.INewCfgDialog interface org.eclipse.cdt.managedbuilder.ui.newui.NewCfgDialog /******************************************************************************* * Copyright (c) 2007 Intel 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: * Intel Corporation - initial API and implementation *******************************************************************************/