Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2006-11-20 19:07:26 +0000
committerslewis2006-11-20 19:07:26 +0000
commit2be0bea25fe78e79486498543ffc986e18438185 (patch)
tree1f3ba358bb8b8b39f52f897239242b5699ac5c19 /framework/bundles/org.eclipse.ecf.ui/plugin.xml
parente12a19fe0aa35e99a4c2419b62c5fbddce536c7f (diff)
downloadorg.eclipse.ecf-2be0bea25fe78e79486498543ffc986e18438185.tar.gz
org.eclipse.ecf-2be0bea25fe78e79486498543ffc986e18438185.tar.xz
org.eclipse.ecf-2be0bea25fe78e79486498543ffc986e18438185.zip
Changed configuration and connectWizards schema.
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.ui/plugin.xml')
-rw-r--r--framework/bundles/org.eclipse.ecf.ui/plugin.xml36
1 files changed, 30 insertions, 6 deletions
diff --git a/framework/bundles/org.eclipse.ecf.ui/plugin.xml b/framework/bundles/org.eclipse.ecf.ui/plugin.xml
index 4b526ef35..0015f80ed 100644
--- a/framework/bundles/org.eclipse.ecf.ui/plugin.xml
+++ b/framework/bundles/org.eclipse.ecf.ui/plugin.xml
@@ -38,25 +38,49 @@
id="org.eclipse.ecf.ui.clientcategory"
name="Clients">
</category>
+ <category
+ id="org.eclipse.ecf.ui.servercategory"
+ name="Servers">
+ </category>
<wizard
category="org.eclipse.ecf.ui.clientcategory"
- class="org.eclipse.ecf.ui.tests.wizards.TestConfigurationWizard"
+ class="asdfasdf"
containerTypeName="ecf.generic.client"
icon="icons/epresence16/buddy_available.gif"
id="org.eclipse.ecf.ui.wizard1"
name="ECF Generic Client">
</wizard>
- <category
- id="org.eclipse.ecf.ui.servercategory"
- name="Servers">
- </category>
<wizard
category="org.eclipse.ecf.ui.servercategory"
- class="org.eclipse.ecf.ui.ConfigurationWizard2"
+ class="sdasdfasdf"
containerTypeName="ecf.generic.server"
icon="icons/epresence16/buddy_unavailable.gif"
id="org.eclipse.ecf.ui.wizard2"
name="ECF Generic Server">
</wizard>
</extension>
+ <extension
+ point="org.eclipse.ui.actionSets">
+ <actionSet
+ id="org.eclipse.ecf.ui.actionSet"
+ label="Sample Action Set"
+ visible="true">
+ <menu
+ id="sampleMenu"
+ label="ECF Wizards">
+ <separator
+ name="sampleGroup">
+ </separator>
+ </menu>
+ <action
+ class="org.eclipse.ecf.ui.tests.actions.SampleAction"
+ icon="icons/sample.gif"
+ id="org.eclipse.ecf.ui.actions.SampleAction"
+ label="&amp;ECF Test Wizard"
+ menubarPath="sampleMenu/sampleGroup"
+ toolbarPath="sampleGroup"
+ tooltip="ECF Test Wizard">
+ </action>
+ </actionSet>
+ </extension>
</plugin>

Back to the top