mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00

Change-Id: I56109bce78155e58b0f98155d5dec0eef625f007 Signed-off-by: Jesse Weinstein <Jesse.Weinstein@clinicomp.com> Reviewed-on: https://git.eclipse.org/r/16402 Reviewed-by: Sergey Prigogin <eclipse.sprigogin@gmail.com> IP-Clean: Sergey Prigogin <eclipse.sprigogin@gmail.com> Tested-by: Sergey Prigogin <eclipse.sprigogin@gmail.com>
135 lines
4.9 KiB
XML
135 lines
4.9 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!-- Schema file written by PDE -->
|
|
<schema targetNamespace="org.eclipse.cdt.ui" xmlns="http://www.w3.org/2001/XMLSchema">
|
|
<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">
|
|
<annotation>
|
|
<appInfo>
|
|
<meta.element />
|
|
</appInfo>
|
|
</annotation>
|
|
<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>
|
|
New configuration dialog class.<br>
|
|
Should implement <code>org.eclipse.cdt.ui.newui.INewCfgDialog</code>
|
|
</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>
|
|
Initial title of New configuration dialog.
|
|
</documentation>
|
|
<appInfo>
|
|
<meta.attribute translatable="true"/>
|
|
</appInfo>
|
|
</annotation>
|
|
</attribute>
|
|
<attribute name="mbs_id" type="string" use="required">
|
|
<annotation>
|
|
<documentation>
|
|
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.
|
|
</documentation>
|
|
<appInfo>
|
|
<meta.attribute kind="identifier"/>
|
|
</appInfo>
|
|
</annotation>
|
|
</attribute>
|
|
</complexType>
|
|
</element>
|
|
<annotation>
|
|
<appInfo>
|
|
<meta.section type="apiInfo"/>
|
|
</appInfo>
|
|
<documentation>
|
|
"class" element should implement org.eclipse.cdt.ui.newui.INewCfgDialog interface
|
|
</documentation>
|
|
</annotation>
|
|
<annotation>
|
|
<appInfo>
|
|
<meta.section type="since"/>
|
|
</appInfo>
|
|
<documentation>
|
|
4.0
|
|
</documentation>
|
|
</annotation>
|
|
<annotation>
|
|
<appInfo>
|
|
<meta.section type="examples"/>
|
|
</appInfo>
|
|
<documentation>
|
|
<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>
|
|
</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>
|
|
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
|
|
</documentation>
|
|
</annotation>
|
|
</schema>
|