|
5 | 5 | <!-- Editors --> |
6 | 6 |
|
7 | 7 | <extension point="org.eclipse.ui.editors"> |
8 | | - <editor class="fr.inria.atlanmod.neoemf.eclipse.ui.editor.NeoEditor" |
| 8 | + <editor class="org.atlanmod.neoemf.eclipse.ui.editor.NeoEditor" |
9 | 9 | contributorClass="org.eclipse.emf.ecore.presentation.EcoreActionBarContributor" |
10 | 10 | default="false" |
11 | 11 | icon="icons/full/obj16/modelFile.gif" |
12 | | - id="fr.inria.atlanmod.neoemf.ui.editor.NeoEditor" |
| 12 | + id="org.atlanmod.neoemf.ui.editor.NeoEditor" |
13 | 13 | name="NeoEMF Editor"> |
14 | 14 | </editor> |
15 | 15 | </extension> |
|
20 | 20 | <modelImporterDescriptor description="Create the Ecore model, based on other Ecore or EMOF models" |
21 | 21 | extensions="ecore,emof" |
22 | 22 | icon="icons/full/obj16/model.gif" |
23 | | - id="fr.inria.atlanmod.neoemf.ui.model.importer" |
| 23 | + id="org.atlanmod.neoemf.ui.model.importer" |
24 | 24 | name="Ecore model (NeoEMF Native)" |
25 | | - wizard="fr.inria.atlanmod.neoemf.eclipse.ui.wizard.NeoModelImporterWizard"> |
| 25 | + wizard="org.atlanmod.neoemf.eclipse.ui.wizard.NeoModelImporterWizard"> |
26 | 26 | </modelImporterDescriptor> |
27 | 27 | </extension> |
28 | 28 |
|
|
31 | 31 | <extension point="org.eclipse.ui.menus"> |
32 | 32 | <menuContribution allPopups="false" locationURI="popup:org.eclipse.ui.popup.any?after=additions"> |
33 | 33 | <menu icon="icons/full/obj16/neoemf.png" label="NeoEMF"> |
34 | | - <command commandId="fr.inria.atlanmod.neoemf.ui.backend.open" style="push"> |
| 34 | + <command commandId="org.atlanmod.neoemf.ui.backend.open" style="push"> |
35 | 35 | <visibleWhen> |
36 | 36 | <with variable="activeMenuSelection"> |
37 | 37 | <iterate ifEmpty="false"> |
38 | 38 | <adapt type="org.eclipse.core.resources.IFolder"> |
39 | | - <test property="fr.inria.atlanmod.neoemf.ui.backend.is" value="true" /> |
| 39 | + <test property="org.atlanmod.neoemf.ui.backend.is" value="true" /> |
40 | 40 | </adapt> |
41 | 41 | </iterate> |
42 | 42 | </with> |
|
45 | 45 |
|
46 | 46 | <separator name="additions" visible="true" /> |
47 | 47 |
|
48 | | - <command commandId="fr.inria.atlanmod.neoemf.ui.metamodel.migrate" style="push"> |
| 48 | + <command commandId="org.atlanmod.neoemf.ui.metamodel.migrate" style="push"> |
49 | 49 | <visibleWhen> |
50 | 50 | <with variable="activeMenuSelection"> |
51 | 51 | <iterate ifEmpty="false"> |
|
58 | 58 | </command> |
59 | 59 |
|
60 | 60 | <command |
61 | | - commandId="fr.inria.atlanmod.neoemf.ui.metamodel.register" |
| 61 | + commandId="org.atlanmod.neoemf.ui.metamodel.register" |
62 | 62 | icon="icons/full/obj16/register.png" |
63 | 63 | style="push"> |
64 | 64 | <visibleWhen> |
|
73 | 73 | </command> |
74 | 74 |
|
75 | 75 | <command |
76 | | - commandId="fr.inria.atlanmod.neoemf.ui.metamodel.unregister" |
| 76 | + commandId="org.atlanmod.neoemf.ui.metamodel.unregister" |
77 | 77 | icon="icons/full/obj16/unregister.png" |
78 | 78 | style="push"> |
79 | 79 | <visibleWhen> |
|
90 | 90 | </menuContribution> |
91 | 91 |
|
92 | 92 | <menuContribution allPopups="false" locationURI="popup:org.eclipse.ui.popup.any?after=additions"> |
93 | | - <command commandId="fr.inria.atlanmod.neoemf.ui.model.dynamic.create" style="push"> |
| 93 | + <command commandId="org.atlanmod.neoemf.ui.model.dynamic.create" style="push"> |
94 | 94 | <visibleWhen> |
95 | 95 | <with variable="activeMenuSelection"> |
96 | 96 | <iterate ifEmpty="false"> |
|
105 | 105 | <!-- Commands --> |
106 | 106 |
|
107 | 107 | <extension point="org.eclipse.ui.commands"> |
108 | | - <command defaultHandler="fr.inria.atlanmod.neoemf.eclipse.ui.command.OpenBackendCommand" |
109 | | - id="fr.inria.atlanmod.neoemf.ui.backend.open" |
| 108 | + <command defaultHandler="org.atlanmod.neoemf.eclipse.ui.command.OpenBackendCommand" |
| 109 | + id="org.atlanmod.neoemf.ui.backend.open" |
110 | 110 | name="Open Model Database" /> |
111 | 111 |
|
112 | | - <command defaultHandler="fr.inria.atlanmod.neoemf.eclipse.ui.command.MigrateCommand" |
113 | | - id="fr.inria.atlanmod.neoemf.ui.metamodel.migrate" |
| 112 | + <command defaultHandler="org.atlanmod.neoemf.eclipse.ui.command.MigrateCommand" |
| 113 | + id="org.atlanmod.neoemf.ui.metamodel.migrate" |
114 | 114 | name="Migrate EMF Generator Model" /> |
115 | 115 |
|
116 | | - <command defaultHandler="fr.inria.atlanmod.neoemf.eclipse.ui.command.RegisterMetamodelCommand" |
117 | | - id="fr.inria.atlanmod.neoemf.ui.metamodel.register" |
| 116 | + <command defaultHandler="org.atlanmod.neoemf.eclipse.ui.command.RegisterMetamodelCommand" |
| 117 | + id="org.atlanmod.neoemf.ui.metamodel.register" |
118 | 118 | name="Register EPackages" /> |
119 | 119 |
|
120 | | - <command defaultHandler="fr.inria.atlanmod.neoemf.eclipse.ui.command.UnregisterMetamodelCommand" |
121 | | - id="fr.inria.atlanmod.neoemf.ui.metamodel.unregister" |
| 120 | + <command defaultHandler="org.atlanmod.neoemf.eclipse.ui.command.UnregisterMetamodelCommand" |
| 121 | + id="org.atlanmod.neoemf.ui.metamodel.unregister" |
122 | 122 | name="Unregister EPackages" /> |
123 | 123 |
|
124 | | - <command defaultHandler="fr.inria.atlanmod.neoemf.eclipse.ui.command.CreateDynamicInstanceCommand" |
125 | | - id="fr.inria.atlanmod.neoemf.ui.model.dynamic.create" |
| 124 | + <command defaultHandler="org.atlanmod.neoemf.eclipse.ui.command.CreateDynamicInstanceCommand" |
| 125 | + id="org.atlanmod.neoemf.ui.model.dynamic.create" |
126 | 126 | name="Create NeoEMF Dynamic Instance..." /> |
127 | 127 | </extension> |
128 | 128 |
|
129 | 129 | <!-- Testers --> |
130 | 130 |
|
131 | 131 | <extension point="org.eclipse.core.expressions.propertyTesters"> |
132 | | - <propertyTester class="fr.inria.atlanmod.neoemf.eclipse.ui.tester.BackendPropertyTester" |
133 | | - id="fr.inria.atlanmod.neoemf.ui.backend.test" |
134 | | - namespace="fr.inria.atlanmod.neoemf.ui.backend" |
| 132 | + <propertyTester class="org.atlanmod.neoemf.eclipse.ui.tester.BackendPropertyTester" |
| 133 | + id="org.atlanmod.neoemf.ui.backend.test" |
| 134 | + namespace="org.atlanmod.neoemf.ui.backend" |
135 | 135 | properties="is" |
136 | 136 | type="org.eclipse.core.resources.IFolder" /> |
137 | 137 | </extension> |
|
140 | 140 |
|
141 | 141 | <extension point="org.eclipse.ui.decorators"> |
142 | 142 | <decorator |
143 | | - class="fr.inria.atlanmod.neoemf.eclipse.ui.decorator.BackendDirectoryDecorator" |
144 | | - id="fr.inria.atlanmod.neoemf.ui.backend.decorator" |
| 143 | + class="org.atlanmod.neoemf.eclipse.ui.decorator.BackendDirectoryDecorator" |
| 144 | + id="org.atlanmod.neoemf.ui.backend.decorator" |
145 | 145 | label="NeoEMF Database Decorator" |
146 | 146 | state="true" |
147 | 147 | adaptable="true"> |
|
0 commit comments