Project

General

Profile

Download (23.5 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<?eclipse version="3.2"?>
3
<plugin>
4
   <extension
5
         id="application"
6
         point="org.eclipse.core.runtime.applications">
7
      <application>
8
         <run
9
               class="eu.etaxonomy.taxeditor.editor.Application">
10
         </run>
11
      </application>
12
   </extension>
13
      <extension
14
            point="org.eclipse.core.runtime.adapters">
15
         <factory
16
               adaptableType="eu.etaxonomy.taxeditor.editor.MultiPageTaxonEditor"
17
               class="eu.etaxonomy.taxeditor.editor.MultiPageTaxonEditorAdapterFactory">
18
            <adapter
19
                  type="eu.etaxonomy.taxeditor.editor.DuplicateArbitrator">
20
            </adapter>
21
         </factory>
22
      </extension>
23
      <extension
24
            point="org.eclipse.ui.views">
25
         <view
26
               allowMultiple="false"
27
               category="eu.etaxonomy.taxeditor.editor.category"
28
               class="eu.etaxonomy.taxeditor.editor.view.validation.ValidationProblemsView"
29
               icon="icons/edit_16x16.gif"
30
               id="eu.etaxonomy.taxeditor.editor.view.validation.problems"
31
               name="%view.name.6">
32
         </view>
33
      </extension>
34
      
35
	<!-- VALIDATION RELATED STUFF -->
36
	<extension point="org.eclipse.core.resources.markers" name="%extension.name.0" id="eu.etaxonomy.taxeditor.markers.validationerror">
37
		<super type="org.eclipse.core.resources.problemmarker"/>
38
		<attribute name="databaseId"/>
39
		<attribute name="userFriendlyTypeName"/>
40
		<attribute name="userFriendlyDescription"/>
41
		<attribute name="userFriendlyFieldName"/>
42
		<attribute name="validatorMessage"/>
43
		<attribute name="invalidValue"/>
44
		<attribute name="validatorClass"/>
45
		<attribute name="entityClass"/>
46
		<attribute name="entityId"/>
47
   		<persistent value="false"/>
48
   	</extension>
49

    
50
	<extension point="org.eclipse.ui.ide.markerSupport">
51
	    <markerContentGenerator
52
		    id="eu.etaxonomy.taxeditor.editor.validation.ValidationProblemsMarkerGenerator" 
53
		    name="%markerContentGenerator.name">  
54
	    	<markerTypeReference id="eu.etaxonomy.taxeditor.markers.validationerror" />
55
	    	
56
	    	<markerFieldReference id="eu.etaxonomy.taxeditor.markers.validation.userFriendlyTypeName" visible="true" />
57
	    	<markerFieldReference id="eu.etaxonomy.taxeditor.markers.validation.userFriendlyDescription" visible="true" />
58
	    	<markerFieldReference id="eu.etaxonomy.taxeditor.markers.validation.userFriendlyFieldName" visible="true" />
59
	    	<markerFieldReference id="eu.etaxonomy.taxeditor.markers.validation.validatorMessage" visible="true" />
60
	    	<markerFieldReference id="eu.etaxonomy.taxeditor.markers.validation.invalidValue" visible="true" />
61
	    	<markerFieldReference id="eu.etaxonomy.taxeditor.markers.validation.validatorClass" visible="false" />
62
	    	<markerFieldReference id="eu.etaxonomy.taxeditor.markers.validation.entityClass" visible="false" />
63
	    	<markerFieldReference id="eu.etaxonomy.taxeditor.markers.validation.entityId" visible="false" />
64
	    </markerContentGenerator>
65
	    
66
		<markerField
67
			class="eu.etaxonomy.taxeditor.editor.view.validation.UserFriendlyTypeNameMarkerField"
68
			id="eu.etaxonomy.taxeditor.markers.validation.userFriendlyTypeName"
69
			name="%marker.field.0">
70
		</markerField>
71
		<markerField
72
			class="eu.etaxonomy.taxeditor.editor.view.validation.UserFriendlyDescriptionMarkerField"
73
			id="eu.etaxonomy.taxeditor.markers.validation.userFriendlyDescription"
74
			name="%marker.field.1">
75
		</markerField>
76
		<markerField
77
			class="eu.etaxonomy.taxeditor.editor.view.validation.UserFriendlyFieldNameMarkerField"
78
			id="eu.etaxonomy.taxeditor.markers.validation.userFriendlyFieldName"
79
			name="%marker.field.2 = Attribute">
80
		</markerField>
81
		<markerField
82
			class="eu.etaxonomy.taxeditor.editor.view.validation.InvalidValueMarkerField"
83
			id="eu.etaxonomy.taxeditor.markers.validation.invalidValue"
84
			name="%marker.field.3 = Problematic Value">
85
		</markerField>
86
		<markerField
87
			class="eu.etaxonomy.taxeditor.editor.view.validation.ValidatorMessageMarkerField"
88
			id="eu.etaxonomy.taxeditor.markers.validation.validatorMessage"
89
			name="%marker.field.4 = Problem description">
90
		</markerField>
91
		<markerField
92
			class="eu.etaxonomy.taxeditor.editor.view.validation.ValidatorClassMarkerField"
93
			id="eu.etaxonomy.taxeditor.markers.validation.validatorClass"
94
			name="%marker.field.5">
95
		</markerField>
96
		<markerField
97
			class="eu.etaxonomy.taxeditor.editor.view.validation.EntityClassMarkerField"
98
			id="eu.etaxonomy.taxeditor.markers.validation.entityClass"
99
			name="%marker.field.6">
100
		</markerField>
101
		<markerField
102
			class="eu.etaxonomy.taxeditor.editor.view.validation.EntityIdMarkerField"
103
			id="eu.etaxonomy.taxeditor.markers.validation.entityId"
104
			name="%marker.field.7">
105
		</markerField>
106
	</extension>
107
	
108
  <extension
109
         point="org.eclipse.ui.elementFactories">
110
      <factory
111
            class="eu.etaxonomy.taxeditor.editor.TaxonEditorInputFactory"
112
            id="eu.etaxonomy.taxeditor.editor.name.taxonEditorInputFactory">
113
      </factory>
114
   </extension>
115
   <extension
116
         point="org.eclipse.ui.menus">
117
      <menuContribution
118
            locationURI="menu:eu.etaxonomy.taxeditor.menu.showView?before=eu.etaxonomy.taxeditor.store.showViewMenu.internal">
119
         <separator
120
               name="eu.etaxonomy.taxeditor.store.showViewMenu.validation.separator"
121
               visible="true">
122
         </separator>
123
         <command
124
               commandId="org.eclipse.ui.views.showView"
125
               label="%command.name.40"
126
               style="push">
127
            <parameter
128
                  name="org.eclipse.ui.views.showView.viewId"
129
                  value="eu.etaxonomy.taxeditor.editor.view.validation.problems">
130
            </parameter>
131
            <visibleWhen
132
                  checkEnabled="true">
133
               <reference
134
                     definitionId="isCdmStoreConnected">
135
               </reference>
136
            </visibleWhen>
137
         </command>
138
      </menuContribution>
139
      
140
      
141
      
142
      
143
      
144
      
145
      <menuContribution
146
            allPopups="false"
147
            locationURI="toolbar:org.eclipse.ui.main.toolbar?after=eu.etaxonomy.taxeditor.navigation.search.toolbar">
148
         <toolbar
149
               id="eu.etaxonomy.taxeditor.editor.derivativeViewToolbar">
150
            <command
151
                  commandId="eu.etaxonomy.taxeditor.editor.derivative.listenToSelectionChange"
152
                  icon="icons/synced.gif"
153
                  label="%command.label.LINK_WITH_TAXON_SELECTIO"
154
                  style="toggle">
155
               <visibleWhen
156
                     checkEnabled="true">
157
                  <with
158
                        variable="activePartId">
159
                     <equals
160
                           value="eu.etaxonomy.taxeditor.editor.view.derivate.DerivateView">
161
                     </equals>
162
                  </with>
163
               </visibleWhen>
164
            </command>
165
         </toolbar>
166
      </menuContribution>
167
   </extension>
168
   <extension
169
         point="org.eclipse.ui.handlers">
170
      <handler
171
            class="org.eclipse.ui.internal.handlers.NewEditorHandler"
172
            commandId="org.eclipse.ui.window.newEditor">
173
         <activeWhen>
174
            <not>
175
               <instanceof
176
                     value="eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor">
177
               </instanceof>
178
            </not>
179
         </activeWhen>
180
         <enabledWhen>
181
            <count
182
                  value="-1">
183
            </count>
184
         </enabledWhen>
185
      </handler>
186
   </extension>
187
   <extension
188
         name="%extension.name"
189
         point="org.eclipse.ui.commands">
190
      <category
191
            id="eu.etaxonomy.taxeditor.editor.taxon.name.command.category"
192
            name="%category.name.0">
193
      </category>
194
    <!--  <command
195
            defaultHandler="eu.etaxonomy.taxeditor.editor.handler.MoveTaxonHandler"
196
            id="eu.etaxonomy.taxeditor.editor.name.moveTaxon"
197
            name="Move Taxon">
198
      </command>-->
199
     <!-- <command
200
            categoryId="eu.etaxonomy.taxeditor.editor.taxon.name.command.category"
201
            defaultHandler="eu.etaxonomy.taxeditor.editor.name.handler.ChangeAcceptedTaxonToSynonymHandler"
202
            id="eu.etaxonomy.taxeditor.editor.name.changeAcceptedToSynonym"
203
            name="Change Accepted Taxon to Synonym">
204
      </command>-->
205
      <category
206
            id="eu.etaxonomy.taxeditor.editor.view.descriptive.command.category"
207
            name="%category.name.1">
208
      </category>
209
      <category
210
            id="eu.etaxonomy.taxeditor.editor.view.uses.command.category"
211
            name="%category.name.2">
212
      </category>
213
      <category
214
            id="eu.etaxonomy.taxeditor.editor.media.category"
215
            name="%category.name.3">
216
      </category>
217
      
218
      <category
219
            id="eu.etaxonomy.taxeditor.editor.new.category"
220
            name="%category.name.4">
221
      </category>
222
      <category
223
            id="eu.etaxonomy.taxeditor.editor.view.concept.category"
224
            name="%category.name.6">
225
      </category>
226
      <category
227
            id="eu.etaxonomy.taxeditor.bulkeditor.group.category"
228
            name="%category.name.7">
229
      </category>
230
       
231
      <command
232
            defaultHandler="eu.etaxonomy.taxeditor.editor.handler.OpenDerivateViewHandler"
233
            id="eu.etaxonomy.taxeditor.editor.openSpecimenEditor"
234
            name="%command.name.OPEN_DERIVATIVE_EDITOR">
235
         <commandParameter
236
               id="eu.etaxonomy.taxeditor.editor.openSpecimenEditor.uuid"
237
               name="Specimen Uuids"
238
               optional="true"
239
               typeId="eu.etaxonomy.taxeditor.uuidParameterType">
240
         </commandParameter>
241
      </command>
242
      <command
243
            defaultHandler="eu.etaxonomy.taxeditor.editor.handler.OpenDerivateViewHandler"
244
            id="eu.etaxonomy.taxeditor.editor.openSpecimenEditorFromMenu"
245
            name="%command.name.OPEN_DERIVATIVE_EDITOR">
246
      </command>
247
        
248
   </extension>
249
   <extension
250
         point="org.eclipse.core.expressions.definitions">
251
      <definition
252
            id="nameEditorActive">
253
         <with
254
               variable="activeEditorId">
255
            <equals
256
                  value="eu.etaxonomy.taxeditor.editor.multipagetaxonview">
257
            </equals>
258
         </with>
259
      </definition>
260
      <definition
261
            id="isAcceptedTaxon">
262
         <with
263
               variable="selection">
264
            <test
265
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isAcceptedTaxon">
266
            </test>
267
         </with>
268
      </definition>
269
      <definition
270
            id="isNotHomotypicSynonymOfAcceptedTaxon">
271
         <with
272
               variable="selection">
273
            <test
274
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isNotHomotypicSynonymOfAcceptedTaxon">
275
            </test>
276
         </with>
277
      </definition>
278
       <definition
279
            id="isSynonymInHomotypicalGroupWithMoreSynonyms">
280
         <with
281
               variable="selection">
282
            <test
283
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isSynonymInHomotypicalGroupWithMoreSynonyms">
284
            </test>
285
         </with>
286
      </definition>
287
      <definition
288
            id="isSynonym">
289
         <with
290
               variable="selection">
291
            <test
292
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isSynonym">
293
            </test>
294
         </with>
295
      </definition>
296
      <definition
297
            id="isMisapplication">
298
         <with
299
               variable="selection">
300
            <test
301
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isMisapplication">
302
            </test>
303
         </with>
304
      </definition>
305
      <definition
306
            id="isTaxonBase">
307
         <with
308
               variable="selection">
309
            <test
310
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isTaxonBase">
311
            </test>
312
         </with>
313
      </definition>
314
      <definition
315
            id="hasEmptyNames">
316
         <with
317
               variable="selection">
318
            <test
319
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.hasEmptyNames">
320
            </test>
321
         </with>
322
      </definition>
323
      <definition
324
            id="isDeletable">
325
         <with
326
               variable="selection">
327
            <test
328
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isDeletable">
329
            </test>
330
         </with>
331
      </definition>
332
      <definition
333
            id="isMedia">
334
         <with
335
               variable="selection">
336
            <test
337
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isMedia">
338
            </test>
339
         </with>
340
      </definition>
341
      <definition
342
            id="isTaxonEditor">
343
         <with
344
               variable="selection">
345
            <test
346
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isTaxonEditor">
347
            </test>
348
         </with>
349
      </definition>
350
      <definition
351
            id="isBulkEditor">
352
         <with
353
               variable="selection">
354
            <test
355
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isBulkEditor">
356
            </test>
357
         </with>
358
      </definition>
359
      <definition
360
            id="isDerivateEditor">
361
         <with
362
               variable="selection">
363
            <test
364
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isDerivateEditor">
365
            </test>
366
         </with>
367
      </definition>
368
      <definition
369
            id="isDescription">
370
         <with
371
               variable="selection">
372
            <test
373
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isDescription">
374
            </test>
375
         </with>
376
      </definition>
377
      <definition
378
            id="isDescriptionElement">
379
         <with
380
               variable="selection">
381
            <test
382
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isDescriptionElement">
383
            </test>
384
         </with>
385
      </definition>
386
      <definition
387
            id="isFeatureNodeContainer">
388
         <with
389
               variable="selection">
390
            <test
391
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isFeatureNodeContainer">
392
            </test>
393
         </with>
394
      </definition>
395
      <definition
396
            id="isImageGallery">
397
         <with
398
               variable="selection">
399
            <test
400
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isImageGallery">
401
            </test>
402
         </with>
403
      </definition>
404
      <definition
405
            id="isAcceptedAndHasNoHomotypicSynonyms">
406
         <with
407
               variable="selection">
408
            <test
409
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isAcceptedAndHasNoHomotypicSynonyms">
410
            </test>
411
         </with>
412
      </definition>
413
      <definition
414
            id="isIndividualsAssociation">
415
         <with
416
               variable="selection">
417
            <test
418
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isIndividualsAssociation">
419
            </test>
420
         </with>
421
      </definition>
422
      <definition
423
            id="isRemoting">
424
         <test
425
               property="eu.etaxonomy.taxeditor.preference.CdmStorePropertyTester.isRemoting">
426
         </test>
427
      </definition>
428
       <definition
429
            id="isKeyNode">
430
          <with
431
                variable="selection">
432
             <test
433
                   property="eu.etaxonomy.taxeditor.editor.key.polytomous.PolytomousKeyPropertyTester.isKeyNode">
434
             </test>
435
          </with>
436
      </definition>
437
      <definition
438
            id="isSequence">
439
         <with
440
               variable="selection">
441
            <test
442
                  property="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester.isSequence">
443
            </test>
444
         </with>
445
      </definition>
446
      <definition
447
            id="isSingleRead">
448
         <with
449
               variable="selection">
450
            <test
451
                  property="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester.isSingleRead">
452
            </test>
453
         </with>
454
      </definition>
455
      <definition
456
            id="isSpecimenOrObservationBase">
457
         <with
458
               variable="selection">
459
            <test
460
                  property="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester.isSpecimenOrObservationBase">
461
            </test>
462
         </with>
463
      </definition>
464
      <definition
465
            id="isDerivativeEditorLinkedToTaxonSelection">
466
         <with
467
               variable="activeEditor">
468
            <test
469
                  property="eu.etaxonomy.taxeditor.editor.view.derivate.DerivativeEditorPropertyTester.isLinkedWithTaxonSelection">
470
            </test>
471
         </with>
472
      </definition>
473
      <definition
474
            id="isOrphanedTaxon">
475
         <with
476
               variable="selection">
477
            <test
478
                  forcePluginActivation="true"
479
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isOrphaned">
480
            </test>
481
         </with>
482
      </definition>
483
      <definition
484
            id="isAddDerivateAllowed">
485
         <with
486
               variable="selection">
487
            <test
488
                  property="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester.isAddDerivateAllowed">
489
            </test>
490
         </with>
491
      </definition>
492
      <definition
493
            id="isAddMediaAllowed">
494
         <with
495
               variable="selection">
496
            <test
497
                  property="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester.isAddMediaAllowed">
498
            </test>
499
         </with>
500
      </definition>
501
   </extension>
502
   <extension
503
         point="org.eclipse.core.expressions.propertyTesters">
504
      <propertyTester
505
            class="eu.etaxonomy.taxeditor.editor.name.handler.NameEditorMenuPropertyTester"
506
            id="eu.etaxonomy.taxeditor.editor.name.propertyTester"
507
            namespace="eu.etaxonomy.taxeditor.editor.name.propertyTester"
508
            properties="isAcceptedTaxon,isSynonym,isMisapplication,isTaxonBase,hasEmptyNames,isAcceptedAndHasNoHomotypicSynonyms,isNotHomotypicSynonymOfAcceptedTaxon,isSynonymInHomotypicalGroupWithMoreSynonyms,isOrphaned"
509
            type="java.lang.Object">
510
      </propertyTester>
511
      <propertyTester
512
            class="eu.etaxonomy.taxeditor.editor.view.descriptive.e4.handler.DescriptionsMenuPropertyTesterE4"
513
            id="eu.etaxonomy.taxeditor.descriptions.propertyTester"
514
            namespace="eu.etaxonomy.taxeditor.descriptions.propertyTester"
515
            properties="isMedia,isDescription,isDescriptionElement,isDeletable,isFeatureNodeContainer,isImageGallery,isTaxonEditor,isBulkEditor,isDerivateEditor, isIndividualsAssociation"
516
            type="java.lang.Object">
517
      </propertyTester>
518
      <propertyTester
519
            class="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester"
520
            id="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester"
521
            namespace="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester"
522
            properties="isSequence,isSingleRead,isSpecimenOrObservationBase,isAddDerivateAllowed,isAddMediaAllowed"
523
            type="org.eclipse.jface.viewers.IStructuredSelection">
524
      </propertyTester>
525
      <propertyTester
526
            class="eu.etaxonomy.taxeditor.editor.view.derivate.DerivativeEditorPropertyTester"
527
            id="eu.etaxonomy.taxeditor.editor.view.derivate.DerivativeEditorPropertyTester"
528
            namespace="eu.etaxonomy.taxeditor.editor.view.derivate.DerivativeEditorPropertyTester"
529
            properties="isLinkedWithTaxonSelection"
530
            type="eu.etaxonomy.taxeditor.editor.view.derivate.DerivateView">
531
      </propertyTester>
532
      <propertyTester
533
            class="eu.etaxonomy.taxeditor.editor.key.polytomous.PolytomousKeyPropertyTester"
534
            id="eu.etaxonomy.taxeditor.editor.key.polytomous.PolytomousKeyPropertyTester"
535
            namespace="eu.etaxonomy.taxeditor.editor.key.polytomous.PolytomousKeyPropertyTester"
536
            properties="isKeyNode"
537
            type="org.eclipse.jface.viewers.IStructuredSelection">
538
      </propertyTester>
539
   </extension>
540
   <extension
541
         point="org.eclipse.ui.bindings">   
542
      <scheme
543
            description="%scheme.description"
544
            id="eu.etaxonomy.taxeditor.bindings.scheme.default"
545
            name="%scheme.name">
546
      </scheme>
547
   </extension>
548
    <!--extension
549
         point="org.eclipse.ui.importWizards">
550
      <wizard
551
            category="eu.etaxonomy.taxeditor.import.category.cdm"
552
            class="eu.etaxonomy.taxeditor.editor.view.dataimport.SpecimenSearchWizard"
553
            id="eu.etaxonomy.taxeditor.editor.view.dataimport.SpecimenSearchWizard"
554
            name="%wizard.name">
555
         <description>
556
            %wizard.description
557
         </description>
558
      </wizard>
559
   </extension-->
560
   <extension
561
          point="eu.etaxonomy.taxeditor.store.cdmViewer">
562
      <viewCommandMapping
563
            commandId="eu.etaxonomy.taxeditor.editor.openTaxonEditorForTaxonNode"
564
            selection="eu.etaxonomy.cdm.model.taxon.TaxonNode"
565
            viewerName="%viewCommandMapping.viewerName.NAME_EDITOR">
566
      </viewCommandMapping>
567
      <viewCommandMapping
568
            commandId="eu.etaxonomy.taxeditor.editor.openTaxonEditorForTaxon"
569
            selection="eu.etaxonomy.cdm.model.taxon.TaxonBase"
570
            viewerName="%viewCommandMapping.viewerName.NAME_EDITOR">
571
      </viewCommandMapping>
572
      <viewCommandMapping
573
            commandId="eu.etaxonomy.taxeditor.editor.openSpecimenEditor"
574
            selection="eu.etaxonomy.cdm.model.description.IndividualsAssociation"
575
            viewerName="%viewCommandMapping.viewerName.SPECIMEN_EDITOR">
576
      </viewCommandMapping>
577
      <viewCommandMapping
578
            commandId="eu.etaxonomy.taxeditor.editor.openSpecimenEditor"
579
            selection="eu.etaxonomy.cdm.model.taxon.TaxonNode"
580
            viewerName="%viewCommandMapping.viewerName.SPECIMEN_EDITOR">
581
      </viewCommandMapping>
582
      <viewCommandMapping
583
            commandId="eu.etaxonomy.taxeditor.editor.handler.OpenChecklistViewHandler"
584
            selection="eu.etaxonomy.cdm.model.taxon.ITaxonTreeNode"
585
            viewerName="%viewCommandMapping.viewerName.CHECKLIST_EDITOR">
586
      </viewCommandMapping>
587
      <viewCommandMapping
588
            commandId="eu.etaxonomy.taxeditor.openSpecimenEditorForTypeSpecimen"
589
            selection="eu.etaxonomy.cdm.model.name.SpecimenTypeDesignation"
590
            viewerName="%viewCommandMapping.viewerName.SPECIMEN_EDITOR">
591
      </viewCommandMapping>
592
      <viewCommandMapping
593
            commandId="eu.etaxonomy.taxeditor.editor.view.concept.command.open"
594
            selection="eu.etaxonomy.cdm.model.taxon.TaxonRelationship"
595
            viewerName="Name Editor">
596
      </viewCommandMapping>
597
      <viewCommandMapping
598
            commandId="eu.etaxonomy.taxeditor.editor.openBulkEditorForTaxonRelationship"
599
            selection="eu.etaxonomy.cdm.model.taxon.TaxonRelationship"
600
            viewerName="Bulk Editor">
601
      </viewCommandMapping>
602
      <viewCommandMapping
603
            commandId="eu.etaxonomy.taxeditor.editor.openSpecimenEditor"
604
            selection="eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationBase"
605
            viewerName="Specimen Editor">
606
      </viewCommandMapping>
607
    </extension>
608
   <extension
609
         id="eu.etaxonomy.taxeditor.editor.workbench.model"
610
         name="Editor Workbench Model"
611
         point="org.eclipse.e4.workbench.model">
612
      <fragment
613
            apply="always"
614
            uri="fragment.e4xmi">
615
      </fragment>
616
   </extension>
617
</plugin>
(6-6/7)