1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension
point="org.eclipse.cdt.managedbuilder.ui.newWizardPages">
<wizardPage
ID="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.AlwaysPresentWizardPage"
operationClass="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.TestRunnable"
pageClass="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.AlwaysPresentWizardPage"/>
<wizardPage
ID="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.NatureAWizardPage"
pageClass="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.NatureAWizardPage">
<nature natureID="A"/>
</wizardPage>
<wizardPage
ID="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.NatureBWizardPage"
pageClass="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.NatureBWizardPage">
<nature natureID="B"/>
</wizardPage>
<wizardPage
ID="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.ToolchainCWizardPage"
pageClass="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.ToolchainCWizardPage">
<toolchain toolchainID="C"/>
</wizardPage>
<wizardPage
ID="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.ToolchainCv20WizardPage"
pageClass="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.ToolchainCv20WizardPage">
<toolchain
toolchainID="C"
versionsSupported="2.0.0"/>
</wizardPage>
<wizardPage
ID="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.ProjectTypeDWizardPage"
pageClass="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.ProjectTypeDWizardPage">
<projectType projectTypeID="D"/>
</wizardPage>
<wizardPage
ID="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.ProjectTypeEWizardPage"
pageClass="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.ProjectTypeEWizardPage">
<projectType projectTypeID="E"/>
</wizardPage>
<wizardPage
ID="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.ToolchainFWizardPage"
pageClass="org.eclipse.cdt.managedbuilder.ui.tests.wizardPages.ToolchainFWizardPage">
<toolchain toolchainID="F"/>
</wizardPage>
</extension>
<extension
id="cdt.test.ToolListContentProvider.toolchain"
point="org.eclipse.cdt.managedbuilder.core.buildDefinitions">
<projectType
id="cdt.managedbuild.target.ToolListContentProvider.exe"
isAbstract="false"
isTest="true">
<configuration
id="cdt.managedbuild.config.ToolListContentProvider.exe.debug"
name="ToolListContentProvider">
<toolChain
id="cdt.managedbuild.toolchain.ToolListContentProvider.exe.debug"
isSystem="true">
<targetPlatform
id="cdt.managedbuild.target.ToolListContentProvider.platform.exe.debug">
</targetPlatform>
<builder
id="cdt.managedbuild.target.ToolListContentProvider.builder.exe.debug">
</builder>
<optionCategory
applicabilityCalculator="org.eclipse.cdt.managedbuilder.ui.tests.properties.HideEmptyOptionCategoryApplicabilityCalculator"
id="ToolListContentProvider.toolchain.empty.category1"
name="ToolListContentProvider.toolchain.empty.category1">
</optionCategory>
<option
category="ToolListContentProvider.toolchain.empty.category1"
id="ToolListContentProvider.toolchain.empty.option1"
isAbstract="false"
resourceFilter="all"
valueType="string">
</option>
<optionCategory
applicabilityCalculator="org.eclipse.cdt.managedbuilder.ui.tests.properties.HideEmptyOptionCategoryApplicabilityCalculator"
id="ToolListContentProvider.toolchain.empty.category2"
name="ToolListContentProvider.toolchain.empty.category2">
</optionCategory>
<tool
id="ToolListContentProvider.tool.empty1"
isAbstract="false"
superClass=" ">
<optionCategory
applicabilityCalculator="org.eclipse.cdt.managedbuilder.ui.tests.properties.HideEmptyOptionCategoryApplicabilityCalculator"
id="ToolListContentProvider.tool.empty.category1"
name="ToolListContentProvider.tool.empty.category1">
</optionCategory>
<option
category="ToolListContentProvider.tool.empty.category1"
id="ToolListContentProvider.tool.empty.option1"
isAbstract="false"
resourceFilter="all"
valueType="string">
</option>
<optionCategory
applicabilityCalculator="org.eclipse.cdt.managedbuilder.ui.tests.properties.HideEmptyOptionCategoryApplicabilityCalculator"
id="ToolListContentProvider.tool.empty.category2"
name="ToolListContentProvider.tool.empty.category2">
</optionCategory>
</tool>
</toolChain>
</configuration>
</projectType>
</extension>
</plugin>
|