Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2005-01-30 06:47:20 +0000
committerslewis2005-01-30 06:47:20 +0000
commitab0df326fc1201f35449c8aff282529a2b4ec511 (patch)
treefa7a14956a0b530d675a6d8cad8014a3d0b78072 /examples/bundles/org.eclipse.ecf.example.collab/plugin.xml
parentd824cd56d02f125a4a03548aecaa211f99929e27 (diff)
downloadorg.eclipse.ecf-ab0df326fc1201f35449c8aff282529a2b4ec511.tar.gz
org.eclipse.ecf-ab0df326fc1201f35449c8aff282529a2b4ec511.tar.xz
org.eclipse.ecf-ab0df326fc1201f35449c8aff282529a2b4ec511.zip
Initial checkin for collab example application
Diffstat (limited to 'examples/bundles/org.eclipse.ecf.example.collab/plugin.xml')
-rw-r--r--examples/bundles/org.eclipse.ecf.example.collab/plugin.xml55
1 files changed, 55 insertions, 0 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.collab/plugin.xml b/examples/bundles/org.eclipse.ecf.example.collab/plugin.xml
new file mode 100644
index 000000000..98238114f
--- /dev/null
+++ b/examples/bundles/org.eclipse.ecf.example.collab/plugin.xml
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<plugin>
+ <extension
+ point="org.eclipse.ui.views">
+ <view
+ icon="icons/person.gif"
+ class="org.eclipse.ecf.example.collab.ui.LineChatView"
+ category="org.eclipse.ecf.client.category"
+ name="ECF Collaboration"
+ id="org.eclipse.ecf.example.collab.ui.LineChatView"/>
+ <category
+ name="ECF"
+ id="org.eclipse.ecf.client.category"/>
+ </extension>
+ <extension
+ point="org.eclipse.ui.actionSets">
+ <actionSet
+ label="Test Actions"
+ visible="true"
+ id="org.eclipse.ecf.example.collab.actionSet">
+ </actionSet>
+ </extension>
+ <extension
+ point="org.eclipse.ui.popupMenus">
+ <objectContribution
+ adaptable="true"
+ objectClass="org.eclipse.core.resources.IProject"
+ id="org.eclipse.ecf.example.collab.contribution1">
+ <menu
+ label="ECF"
+ path="additions"
+ id="org.eclipse.ecf.example.collab.menu1">
+ <separator name="group1"/>
+ <separator name="group2"/>
+ </menu>
+ <action
+ label="Join ECF Collaboration..."
+ class="org.eclipse.ecf.example.collab.ui.JoinGroupWizardAction"
+ menubarPath="org.eclipse.ecf.example.collab.menu1/group1"
+ id="org.eclipse.ecf.client.joingroupwizardaction"/>
+ <action
+ label="Join Test Collaboration (Composent)"
+ class="org.eclipse.ecf.example.collab.actions.ProjectPopupComposentAction"
+ menubarPath="org.eclipse.ecf.example.collab.menu1/group2"
+ id="org.eclipse.ecf.example.collab.newAction"/>
+ <action
+ label="Join Test Collaboration (Localhost)"
+ class="org.eclipse.ecf.example.collab.actions.ProjectPopupLocalhostAction"
+ menubarPath="org.eclipse.ecf.example.collab.menu1/group2"
+ id="org.eclipse.ecf.example.collab.newAction1"/>
+ </objectContribution>
+ </extension>
+
+</plugin>

Back to the top