2007-02-20 17:23:35 +00:00
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
2013-09-12 20:20:28 -04:00
<schema targetNamespace="org.eclipse.cdt.ui" xmlns="http://www.w3.org/2001/XMLSchema">
2007-02-20 17:23:35 +00:00
<annotation>
<appInfo>
<meta.schema plugin="org.eclipse.cdt.ui" id="newCfgDialog" name="newCfgDialog"/>
</appInfo>
<documentation>
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.
</documentation>
</annotation>
<element name="extension">
2013-09-12 20:20:28 -04:00
<annotation>
<appInfo>
<meta.element />
</appInfo>
</annotation>
2007-02-20 17:23:35 +00:00
<complexType>
<sequence>
<element ref="dialog" minOccurs="1" maxOccurs="unbounded"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
<documentation>
</documentation>
</annotation>
</attribute>
<attribute name="id" type="string">
<annotation>
<documentation>
</documentation>
</annotation>
</attribute>
<attribute name="name" type="string">
<annotation>
<documentation>
</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<element name="dialog">
<complexType>
<attribute name="class" type="string" use="required">
<annotation>
<documentation>
2013-09-12 20:20:28 -04:00
New configuration dialog class.<br>
Should implement <code>org.eclipse.cdt.ui.newui.INewCfgDialog</code>
2007-02-20 17:23:35 +00:00
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.cdt.ui.newui.INewCfgDialog"/>
</appInfo>
</annotation>
</attribute>
<attribute name="title" type="string" use="required">
<annotation>
<documentation>
2013-09-12 20:20:28 -04:00
Initial title of New configuration dialog.
2007-02-20 17:23:35 +00:00
</documentation>
2013-09-12 20:20:28 -04:00
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
2007-02-20 17:23:35 +00:00
</annotation>
</attribute>
<attribute name="mbs_id" type="string" use="required">
<annotation>
<documentation>
2013-09-12 20:20:28 -04:00
The ID of the corresponding managed buld system (MBS).<br>
The dialog will be displayed only if the MBS ID for the current project equals this attribute.
2007-02-20 17:23:35 +00:00
</documentation>
2013-09-12 20:20:28 -04:00
<appInfo>
<meta.attribute kind="identifier"/>
</appInfo>
2007-02-20 17:23:35 +00:00
</annotation>
</attribute>
</complexType>
</element>
2013-09-12 20:20:28 -04:00
<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
"class" element should implement org.eclipse.cdt.ui.newui.INewCfgDialog interface
</documentation>
</annotation>
2007-02-20 17:23:35 +00:00
<annotation>
<appInfo>
<meta.section type="since"/>
</appInfo>
<documentation>
4.0
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
2013-09-12 20:20:28 -04:00
<extension
2007-02-20 17:23:35 +00:00
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>
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="implementation"/>
</appInfo>
<documentation>
org.eclipse.cdt.managedbuilder.ui.newui.NewCfgDialog
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="copyright"/>
</appInfo>
<documentation>
2013-09-12 20:20:28 -04:00
Copyright (c) 2007 Intel Corporation and others.
2018-11-20 13:02:15 +00:00
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/
2013-09-12 20:20:28 -04:00
Contributors:
Intel Corporation - initial API and implementation
2007-02-20 17:23:35 +00:00
</documentation>
</annotation>
</schema>