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.core.expressions.definitions">
170
      <definition
171
            id="nameEditorActive">
172
         <with
173
               variable="activeEditorId">
174
            <equals
175
                  value="eu.etaxonomy.taxeditor.editor.multipagetaxonview">
176
            </equals>
177
         </with>
178
      </definition>
179
      <definition
180
            id="isAcceptedTaxon">
181
         <with
182
               variable="selection">
183
            <test
184
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isAcceptedTaxon">
185
            </test>
186
         </with>
187
      </definition>
188
      <definition
189
            id="isNotHomotypicSynonymOfAcceptedTaxon">
190
         <with
191
               variable="selection">
192
            <test
193
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isNotHomotypicSynonymOfAcceptedTaxon">
194
            </test>
195
         </with>
196
      </definition>
197
          <definition
198
            id="isNotAcceptedTaxon">
199
         <with
200
               variable="selection">
201
            <test
202
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isNotAcceptedTaxon">
203
            </test>
204
         </with>
205
      </definition>
206
       <definition
207
            id="isSynonymInHomotypicalGroupWithMoreSynonyms">
208
         <with
209
               variable="selection">
210
            <test
211
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isSynonymInHomotypicalGroupWithMoreSynonyms">
212
            </test>
213
         </with>
214
      </definition>
215
      <definition
216
            id="isSynonym">
217
         <with
218
               variable="selection">
219
            <test
220
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isSynonym">
221
            </test>
222
         </with>
223
      </definition>
224
      <definition
225
            id="isNotSynonym">
226
         <with
227
               variable="selection">
228
            <test
229
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isNotSynonym">
230
            </test>
231
         </with>
232
      </definition>
233
      <definition
234
            id="isMisapplication">
235
         <with
236
               variable="selection">
237
            <test
238
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isMisapplication">
239
            </test>
240
         </with>
241
      </definition>
242
       <definition
243
            id="isProparteSynonym">
244
         <with
245
               variable="selection">
246
            <test
247
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isProparteSynonym">
248
            </test>
249
         </with>
250
      </definition>
251
       <definition
252
            id="isNotProparteSynonym">
253
         <with
254
               variable="selection">
255
            <test
256
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isNotProparteSynonym">
257
            </test>
258
         </with>
259
      </definition>
260
           <definition
261
            id="isNotMisapplication">
262
         <with
263
               variable="selection">
264
            <test
265
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isNotMisapplication">
266
            </test>
267
         </with>
268
      </definition>
269
      <definition
270
            id="isNotInvalidDesignation">
271
         <with
272
               variable="selection">
273
            <test
274
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isNotInvalidDesignation">
275
            </test>
276
         </with>
277
      </definition>
278
      <definition
279
            id="isTaxonBase">
280
         <with
281
               variable="selection">
282
            <test
283
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isTaxonBase">
284
            </test>
285
         </with>
286
      </definition>
287
      <definition
288
            id="hasEmptyNames">
289
         <with
290
               variable="selection">
291
            <test
292
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.hasEmptyNames">
293
            </test>
294
         </with>
295
      </definition>
296
      <definition
297
            id="isDeletable">
298
         <with
299
               variable="selection">
300
            <test
301
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isDeletable">
302
            </test>
303
         </with>
304
      </definition>
305
      <definition
306
            id="isMedia">
307
         <with
308
               variable="selection">
309
            <test
310
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isMedia">
311
            </test>
312
         </with>
313
      </definition>
314
      <definition
315
            id="isTaxonEditor">
316
         <with
317
               variable="selection">
318
            <test
319
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isTaxonEditor">
320
            </test>
321
         </with>
322
      </definition>
323
      <definition
324
            id="isBulkEditor">
325
         <with
326
               variable="selection">
327
            <test
328
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isBulkEditor">
329
            </test>
330
         </with>
331
      </definition>
332
      <definition
333
            id="isDerivateEditor">
334
         <with
335
               variable="selection">
336
            <test
337
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isDerivateEditor">
338
            </test>
339
         </with>
340
      </definition>
341
      <definition
342
            id="isDescription">
343
         <with
344
               variable="selection">
345
            <test
346
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isDescription">
347
            </test>
348
         </with>
349
      </definition>
350
      <definition
351
            id="isDescriptionElement">
352
         <with
353
               variable="selection">
354
            <test
355
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isDescriptionElement">
356
            </test>
357
         </with>
358
      </definition>
359
      <definition
360
            id="isFeatureNodeContainer">
361
         <with
362
               variable="selection">
363
            <test
364
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isFeatureNodeContainer">
365
            </test>
366
         </with>
367
      </definition>
368
      <definition
369
            id="isImageGallery">
370
         <with
371
               variable="selection">
372
            <test
373
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isImageGallery">
374
            </test>
375
         </with>
376
      </definition>
377
      <definition
378
            id="isAcceptedAndHasNoHomotypicSynonyms">
379
         <with
380
               variable="selection">
381
            <test
382
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isAcceptedAndHasNoHomotypicSynonyms">
383
            </test>
384
         </with>
385
      </definition>
386
      <definition
387
            id="isIndividualsAssociation">
388
         <with
389
               variable="selection">
390
            <test
391
                  property="eu.etaxonomy.taxeditor.descriptions.propertyTester.isIndividualsAssociation">
392
            </test>
393
         </with>
394
      </definition>
395
      <definition
396
            id="isRemoting">
397
         <test
398
               property="eu.etaxonomy.taxeditor.preference.CdmStorePropertyTester.isRemoting">
399
         </test>
400
      </definition>
401
       <definition
402
            id="isKeyNode">
403
          <with
404
                variable="selection">
405
             <test
406
                   property="eu.etaxonomy.taxeditor.editor.key.polytomous.PolytomousKeyPropertyTester.isKeyNode">
407
             </test>
408
          </with>
409
      </definition>
410
      <definition
411
            id="isSequence">
412
         <with
413
               variable="selection">
414
            <test
415
                  property="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester.isSequence">
416
            </test>
417
         </with>
418
      </definition>
419
      <definition
420
            id="isSingleRead">
421
         <with
422
               variable="selection">
423
            <test
424
                  property="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester.isSingleRead">
425
            </test>
426
         </with>
427
      </definition>
428
      <definition
429
            id="isSpecimenOrObservationBase">
430
         <with
431
               variable="selection">
432
            <test
433
                  property="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester.isSpecimenOrObservationBase">
434
            </test>
435
         </with>
436
      </definition>
437
      <definition
438
            id="isDerivativeEditorLinkedToTaxonSelection">
439
         <with
440
               variable="activeEditor">
441
            <test
442
                  property="eu.etaxonomy.taxeditor.editor.view.derivate.DerivativeEditorPropertyTester.isLinkedWithTaxonSelection">
443
            </test>
444
         </with>
445
      </definition>
446
      <definition
447
            id="isOrphanedTaxon">
448
         <with
449
               variable="selection">
450
            <test
451
                  forcePluginActivation="true"
452
                  property="eu.etaxonomy.taxeditor.editor.name.propertyTester.isOrphaned">
453
            </test>
454
         </with>
455
      </definition>
456
      <definition
457
            id="isAddDerivateAllowed">
458
         <with
459
               variable="selection">
460
            <test
461
                  property="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester.isAddDerivateAllowed">
462
            </test>
463
         </with>
464
      </definition>
465
      <definition
466
            id="isAddMediaAllowed">
467
         <with
468
               variable="selection">
469
            <test
470
                  property="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester.isAddMediaAllowed">
471
            </test>
472
         </with>
473
      </definition>
474
   </extension>
475
   <extension
476
         point="org.eclipse.core.expressions.propertyTesters">
477
      <propertyTester
478
            class="eu.etaxonomy.taxeditor.editor.name.handler.NameEditorMenuPropertyTester"
479
            id="eu.etaxonomy.taxeditor.editor.name.propertyTester"
480
            namespace="eu.etaxonomy.taxeditor.editor.name.propertyTester"
481
            properties="isAcceptedTaxon,isSynonym,isNotSynonym,isMisapplication,isProparteSynonym,isNotProparteSynonym,isNotMisapplication,isNotInvalidDesignation,isTaxonBase,hasEmptyNames,isAcceptedAndHasNoHomotypicSynonyms,isNotHomotypicSynonymOfAcceptedTaxon,isNotAcceptedTaxon,isSynonymInHomotypicalGroupWithMoreSynonyms,isOrphaned"
482
            type="java.lang.Object">
483
      </propertyTester>
484
      <propertyTester
485
            class="eu.etaxonomy.taxeditor.editor.view.descriptive.e4.handler.DescriptionsMenuPropertyTesterE4"
486
            id="eu.etaxonomy.taxeditor.descriptions.propertyTester"
487
            namespace="eu.etaxonomy.taxeditor.descriptions.propertyTester"
488
            properties="isMedia,isDescription,isDescriptionElement,isDeletable,isFeatureNodeContainer,isImageGallery,isTaxonEditor,isBulkEditor,isDerivateEditor, isIndividualsAssociation"
489
            type="java.lang.Object">
490
      </propertyTester>
491
      <propertyTester
492
            class="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester"
493
            id="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester"
494
            namespace="eu.etaxonomy.taxeditor.editor.handler.SpecimenPropertyTester"
495
            properties="isSequence,isSingleRead,isSpecimenOrObservationBase,isAddDerivateAllowed,isAddMediaAllowed"
496
            type="org.eclipse.jface.viewers.IStructuredSelection">
497
      </propertyTester>
498
      <propertyTester
499
            class="eu.etaxonomy.taxeditor.editor.view.derivate.DerivativeEditorPropertyTester"
500
            id="eu.etaxonomy.taxeditor.editor.view.derivate.DerivativeEditorPropertyTester"
501
            namespace="eu.etaxonomy.taxeditor.editor.view.derivate.DerivativeEditorPropertyTester"
502
            properties="isLinkedWithTaxonSelection"
503
            type="eu.etaxonomy.taxeditor.editor.view.derivate.DerivateView">
504
      </propertyTester>
505
      <propertyTester
506
            class="eu.etaxonomy.taxeditor.editor.key.polytomous.PolytomousKeyPropertyTester"
507
            id="eu.etaxonomy.taxeditor.editor.key.polytomous.PolytomousKeyPropertyTester"
508
            namespace="eu.etaxonomy.taxeditor.editor.key.polytomous.PolytomousKeyPropertyTester"
509
            properties="isKeyNode"
510
            type="org.eclipse.jface.viewers.IStructuredSelection">
511
      </propertyTester>
512
   </extension>
513
   <extension
514
         point="org.eclipse.ui.bindings">   
515
      <scheme
516
            description="%scheme.description"
517
            id="eu.etaxonomy.taxeditor.bindings.scheme.default"
518
            name="%scheme.name">
519
      </scheme>
520
   </extension>
521
    <!--extension
522
         point="org.eclipse.ui.importWizards">
523
      <wizard
524
            category="eu.etaxonomy.taxeditor.import.category.cdm"
525
            class="eu.etaxonomy.taxeditor.editor.view.dataimport.SpecimenSearchWizard"
526
            id="eu.etaxonomy.taxeditor.editor.view.dataimport.SpecimenSearchWizard"
527
            name="%wizard.name">
528
         <description>
529
            %wizard.description
530
         </description>
531
      </wizard>
532
   </extension-->
533
   <extension
534
          point="eu.etaxonomy.taxeditor.store.cdmViewer">
535
      <viewCommandMapping
536
            commandId="eu.etaxonomy.taxeditor.editor.openTaxonEditorForTaxonNode"
537
            selection="eu.etaxonomy.cdm.model.taxon.TaxonNode"
538
            viewerName="%viewCommandMapping.viewerName.NAME_EDITOR">
539
      </viewCommandMapping>
540
      <viewCommandMapping
541
            commandId="eu.etaxonomy.taxeditor.editor.openTaxonEditorForTaxon"
542
            selection="eu.etaxonomy.cdm.model.taxon.TaxonBase"
543
            viewerName="%viewCommandMapping.viewerName.NAME_EDITOR">
544
      </viewCommandMapping>
545
      <viewCommandMapping
546
            commandId="eu.etaxonomy.taxeditor.editor.openSpecimenEditorForIndividualsAssociation"
547
            selection="eu.etaxonomy.cdm.model.description.IndividualsAssociation"
548
            viewerName="%viewCommandMapping.viewerName.SPECIMEN_EDITOR">
549
      </viewCommandMapping>
550
      <viewCommandMapping
551
            commandId="eu.etaxonomy.taxeditor.editor.openSpecimenEditorForTaxonNode"
552
            selection="eu.etaxonomy.cdm.model.taxon.TaxonNode"
553
            viewerName="%viewCommandMapping.viewerName.SPECIMEN_EDITOR">
554
      </viewCommandMapping>
555
      <viewCommandMapping
556
            commandId="eu.etaxonomy.taxeditor.editor.handler.OpenChecklistViewHandler"
557
            selection="eu.etaxonomy.cdm.model.taxon.ITaxonTreeNode"
558
            viewerName="%viewCommandMapping.viewerName.CHECKLIST_EDITOR">
559
      </viewCommandMapping>
560
      <viewCommandMapping
561
            commandId="eu.etaxonomy.taxeditor.openSpecimenEditorForTypeSpecimen"
562
            selection="eu.etaxonomy.cdm.model.name.SpecimenTypeDesignation"
563
            viewerName="%viewCommandMapping.viewerName.SPECIMEN_EDITOR">
564
      </viewCommandMapping>
565
      <viewCommandMapping
566
            commandId="eu.etaxonomy.taxeditor.editor.view.concept.command.open"
567
            selection="eu.etaxonomy.cdm.model.taxon.TaxonRelationship"
568
            viewerName="Name Editor">
569
      </viewCommandMapping>
570
      <viewCommandMapping
571
            commandId="eu.etaxonomy.taxeditor.editor.openBulkEditorForTaxonRelationship"
572
            selection="eu.etaxonomy.cdm.model.taxon.TaxonRelationship"
573
            viewerName="Bulk Editor">
574
      </viewCommandMapping>
575
      <viewCommandMapping
576
            commandId="eu.etaxonomy.taxeditor.editor.openSpecimenEditorForSpecimenOrObservation"
577
            selection="eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationBase"
578
            viewerName="Specimen Editor (tree)">
579
      </viewCommandMapping>
580
      <viewCommandMapping
581
            commandId="eu.etaxonomy.taxeditor.editor.command.descriptiveDataSet.openDescriptiveDataSetEditor"
582
            selection="eu.etaxonomy.cdm.model.description.DescriptiveDataSet"
583
            viewerName="Descriptive Data Set Editor">
584
      </viewCommandMapping>
585
      <viewCommandMapping
586
            commandId="eu.etaxonomy.taxeditor.editor.command.descriptiveDataSet.openCharacterMatrix"
587
            selection="eu.etaxonomy.cdm.model.description.DescriptiveDataSet"
588
            viewerName="Character Matrix">
589
      </viewCommandMapping>
590
      <viewCommandMapping
591
            commandId="eu.etaxonomy.taxeditor.editor.command.descriptiveDataSet.openDescriptiveDataSetEditor"
592
            selection="eu.etaxonomy.cdm.persistence.dto.UuidAndTitleCache"
593
            viewerName="Descriptive Data Set Editor">
594
      </viewCommandMapping>
595
      <viewCommandMapping
596
            commandId="eu.etaxonomy.taxeditor.openSpecimenEditorForGatheringEvent"
597
            selection="eu.etaxonomy.cdm.model.occurrence.GatheringEvent"
598
            viewerName="%viewCommandMapping.viewerName.SPECIMEN_EDITOR">
599
      </viewCommandMapping>
600
    </extension>
601
   <extension
602
         id="eu.etaxonomy.taxeditor.editor.workbench.model"
603
         name="Editor Workbench Model"
604
         point="org.eclipse.e4.workbench.model">
605
      <fragment
606
            apply="always"
607
            uri="fragment.e4xmi">
608
      </fragment>
609
   </extension>
610
</plugin>
(3-3/4)