Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'restructuration/org.eclipse.emf.compare.examples.addressbook/plugin.xml')
-rw-r--r--restructuration/org.eclipse.emf.compare.examples.addressbook/plugin.xml72
1 files changed, 72 insertions, 0 deletions
diff --git a/restructuration/org.eclipse.emf.compare.examples.addressbook/plugin.xml b/restructuration/org.eclipse.emf.compare.examples.addressbook/plugin.xml
new file mode 100644
index 000000000..369cf5b19
--- /dev/null
+++ b/restructuration/org.eclipse.emf.compare.examples.addressbook/plugin.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+
+<!--
+Copyright (c) 2006, 2009 Obeo.
+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:
+ Obeo - initial API and implementation
+-->
+
+<plugin>
+
+ <extension point="org.eclipse.emf.edit.itemProviderAdapterFactories">
+ <factory
+ uri = "http://www.eclipse.org/emf/compare/examples/addressbook"
+ class = "org.eclipse.emf.compare.examples.addressbook.addressbook.provider.AddressbookItemProviderAdapterFactory"
+ supportedTypes =
+ "org.eclipse.emf.edit.provider.IEditingDomainItemProvider
+ org.eclipse.emf.edit.provider.IStructuredItemContentProvider
+ org.eclipse.emf.edit.provider.ITreeItemContentProvider
+ org.eclipse.emf.edit.provider.IItemLabelProvider
+ org.eclipse.emf.edit.provider.IItemPropertySource" />
+ </extension>
+
+ <extension point="org.eclipse.emf.ecore.generated_package">
+ <package
+ uri = "http://www.eclipse.org/emf/compare/examples/addressbook"
+ class = "org.eclipse.emf.compare.examples.addressbook.addressbook.AddressbookPackage"
+ genModel = "model/addressbook.genmodel" />
+ </extension>
+
+
+ <extension
+ point = "org.eclipse.ui.newWizards">
+ <category
+ id = "org.eclipse.emf.ecore.Wizard.category.ID"
+ name="%_UI_Wizard_category">
+ </category>
+ <wizard
+ id = "addressbook.presentation.AddressbookModelWizardID"
+ name = "%_UI_AddressbookModelWizard_label"
+ class = "org.eclipse.emf.compare.examples.addressbook.addressbook.presentation.AddressbookModelWizard"
+ category = "org.eclipse.emf.ecore.Wizard.category.ID"
+ icon = "icons/full/obj16/AddressbookModelFile.gif">
+ <description>%_UI_AddressbookModelWizard_description</description>
+ <selection class = "org.eclipse.core.resources.IResource" />
+ </wizard>
+ </extension>
+
+ <extension point = "org.eclipse.ui.editors">
+ <editor
+ id = "addressbook.presentation.AddressbookEditorID"
+ name = "%_UI_AddressbookEditor_label"
+ icon = "icons/full/obj16/AddressbookModelFile.gif"
+ extensions = "addressbook"
+ class = "org.eclipse.emf.compare.examples.addressbook.addressbook.presentation.AddressbookEditor"
+ contributorClass="org.eclipse.emf.compare.examples.addressbook.addressbook.presentation.AddressbookActionBarContributor" >
+ </editor>
+ </extension>
+ <extension
+ point="org.eclipse.emf.compare.match.engine">
+ <matchengine
+ engineClass="org.eclipse.emf.compare.examples.addressbook.service.AddressBookMatcher"
+ fileExtension="addressbook"
+ label="Address Book">
+ </matchengine>
+ </extension>
+</plugin>

Back to the top