Project

General

Profile

Download (38 KB) Statistics
| Branch: | Tag: | Revision:
1

    
2
// $Id$
3
/**
4
 * Copyright (C) 2011 EDIT
5
 * European Distributed Institute of Taxonomy
6
 * http://www.e-taxonomy.eu
7
 *
8
 * The contents of this file are subject to the Mozilla Public License Version 1.1
9
 * See LICENSE.TXT at the top of this package for the full license terms.
10
 */
11

    
12
package eu.etaxonomy.taxeditor.view.detail;
13

    
14
import java.util.Set;
15

    
16
import org.eclipse.jface.viewers.ISelection;
17
import org.eclipse.jface.viewers.SelectionChangedEvent;
18
import org.eclipse.jface.viewers.TreeNode;
19
import org.eclipse.swt.SWT;
20
import org.eclipse.swt.widgets.Composite;
21
import org.eclipse.ui.forms.widgets.ExpandableComposite;
22

    
23
import eu.etaxonomy.cdm.api.facade.DerivedUnitFacade;
24
import eu.etaxonomy.cdm.api.facade.DerivedUnitFacadeNotSupportedException;
25
import eu.etaxonomy.cdm.ext.occurrence.gbif.GbifResponse;
26
import eu.etaxonomy.cdm.model.agent.Person;
27
import eu.etaxonomy.cdm.model.agent.Team;
28
import eu.etaxonomy.cdm.model.agent.TeamOrPersonBase;
29
import eu.etaxonomy.cdm.model.common.DefinedTermBase;
30
import eu.etaxonomy.cdm.model.common.Group;
31
import eu.etaxonomy.cdm.model.common.Marker;
32
import eu.etaxonomy.cdm.model.common.TermVocabulary;
33
import eu.etaxonomy.cdm.model.common.User;
34
import eu.etaxonomy.cdm.model.description.CategoricalData;
35
import eu.etaxonomy.cdm.model.description.DescriptionBase;
36
import eu.etaxonomy.cdm.model.description.DescriptionElementBase;
37
import eu.etaxonomy.cdm.model.description.PolytomousKeyNode;
38
import eu.etaxonomy.cdm.model.description.SpecimenDescription;
39
import eu.etaxonomy.cdm.model.media.Media;
40
import eu.etaxonomy.cdm.model.molecular.DnaSample;
41
import eu.etaxonomy.cdm.model.molecular.Sequence;
42
import eu.etaxonomy.cdm.model.molecular.SingleRead;
43
import eu.etaxonomy.cdm.model.name.NonViralName;
44
import eu.etaxonomy.cdm.model.occurrence.DerivedUnit;
45
import eu.etaxonomy.cdm.model.occurrence.FieldUnit;
46
import eu.etaxonomy.cdm.model.occurrence.MediaSpecimen;
47
import eu.etaxonomy.cdm.model.occurrence.SpecimenOrObservationType;
48
import eu.etaxonomy.cdm.model.reference.Reference;
49
import eu.etaxonomy.cdm.model.taxon.TaxonBase;
50
import eu.etaxonomy.cdm.model.taxon.TaxonRelationship;
51
import eu.etaxonomy.taxeditor.model.AbstractUtility;
52
import eu.etaxonomy.taxeditor.model.FeatureNodeContainer;
53
import eu.etaxonomy.taxeditor.model.IDerivedUnitFacadePart;
54
import eu.etaxonomy.taxeditor.model.MessagingUtils;
55
import eu.etaxonomy.taxeditor.model.PolytomousKeyRelationship;
56
import eu.etaxonomy.taxeditor.preference.IPreferenceKeys;
57
import eu.etaxonomy.taxeditor.preference.PreferencesUtil;
58
import eu.etaxonomy.taxeditor.store.UsageTermCollection;
59
import eu.etaxonomy.taxeditor.ui.element.AbstractFormSection;
60
import eu.etaxonomy.taxeditor.ui.element.RootElement;
61
import eu.etaxonomy.taxeditor.ui.section.agent.PersonDetailSection;
62
import eu.etaxonomy.taxeditor.ui.section.agent.TeamDetailSection;
63
import eu.etaxonomy.taxeditor.ui.section.agent.TeamOrPersonBaseDetailSection;
64
import eu.etaxonomy.taxeditor.ui.section.common.ReferencedEntityDetailSection;
65
import eu.etaxonomy.taxeditor.ui.section.description.DescribedSpecimenSection;
66
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionDetailSection;
67
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementDetailSection;
68
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementMediaSection;
69
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementSourceSection;
70
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionSourceSection;
71
import eu.etaxonomy.taxeditor.ui.section.description.MediaDetailsSection;
72
import eu.etaxonomy.taxeditor.ui.section.description.NaturalLanguageSection;
73
import eu.etaxonomy.taxeditor.ui.section.description.ScopeSection;
74
import eu.etaxonomy.taxeditor.ui.section.feature.FeatureDistributionDetailSection;
75
import eu.etaxonomy.taxeditor.ui.section.grantedAuthority.GrantedAuthorityDetailSection;
76
import eu.etaxonomy.taxeditor.ui.section.group.GroupDetailSection;
77
import eu.etaxonomy.taxeditor.ui.section.group.MemberDetailSection;
78
import eu.etaxonomy.taxeditor.ui.section.identifier.IdentifierDetailSection;
79
import eu.etaxonomy.taxeditor.ui.section.key.PolytomousKeyDetailSection;
80
import eu.etaxonomy.taxeditor.ui.section.key.PolytomousKeyNodeDetailSection;
81
import eu.etaxonomy.taxeditor.ui.section.name.NameRelationshipDetailSection;
82
import eu.etaxonomy.taxeditor.ui.section.name.NomenclaturalStatusSection;
83
import eu.etaxonomy.taxeditor.ui.section.name.NonViralNameDetailSection;
84
import eu.etaxonomy.taxeditor.ui.section.name.ProtologueSection;
85
import eu.etaxonomy.taxeditor.ui.section.name.TypeDesignationSection;
86
import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitBaseDetailSection;
87
import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitGeneralDetailSection;
88
import eu.etaxonomy.taxeditor.ui.section.occurrence.DeterminationDetailSection;
89
import eu.etaxonomy.taxeditor.ui.section.occurrence.EmptySection;
90
import eu.etaxonomy.taxeditor.ui.section.occurrence.FieldUnitDetailSection;
91
import eu.etaxonomy.taxeditor.ui.section.occurrence.FieldUnitGeneralDetailSection;
92
import eu.etaxonomy.taxeditor.ui.section.occurrence.GatheringEventDetailSection;
93
import eu.etaxonomy.taxeditor.ui.section.occurrence.association.TaxonAssociationDetailSection;
94
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaQualityDetailSection;
95
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaSampleGeneralDetailSection;
96
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaSamplePreparationPreservationSection;
97
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SampleDesignationDetailSection;
98
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceContigFileCollectionDetailSection;
99
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceGeneralDetailSection;
100
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceReferenceCollectionDetailSection;
101
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SingleReadGeneralDetailSection;
102
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SingleReadPherogramCollectionDetailSection;
103
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.TissueSampleGeneralDetailSection;
104
import eu.etaxonomy.taxeditor.ui.section.occurrence.media.MediaSpecimenGeneralDetailSection;
105
import eu.etaxonomy.taxeditor.ui.section.reference.NomenclaturalReferenceDetailSection;
106
import eu.etaxonomy.taxeditor.ui.section.reference.ReferenceDetailSection;
107
import eu.etaxonomy.taxeditor.ui.section.supplemental.RightsSection;
108
import eu.etaxonomy.taxeditor.ui.section.taxon.ParsingMessagesSection;
109
import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonBaseDetailSection;
110
import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonRelationshipDetailSection;
111
import eu.etaxonomy.taxeditor.ui.section.user.GroupsByUserDetailSection;
112
import eu.etaxonomy.taxeditor.ui.section.user.UserDetailSection;
113
import eu.etaxonomy.taxeditor.ui.section.userecords.UseRecordDetailSection;
114
import eu.etaxonomy.taxeditor.ui.section.vocabulary.TermVocabularyDetailSection;
115
import eu.etaxonomy.taxeditor.view.AbstractCdmDataViewer;
116
import eu.etaxonomy.taxeditor.view.AbstractCdmViewPart;
117

    
118
/**
119
 *
120
 * The DetailsViewer handles the content of the details view (
121
 * {@link DetailsViewPart}).<br>
122
 * Depending on the type of the selected element the section of the details view
123
 * are created.
124
 *
125
 * @author n.hoffmann
126
 * @created Feb 12, 2010
127
 * @version 1.0
128
 */
129
public class DetailsViewer extends AbstractCdmDataViewer {
130

    
131
    private ISelection selection;
132

    
133
    public DetailsViewer(Composite parent, AbstractCdmViewPart viewPart) {
134
        super(parent, viewPart);
135
    }
136

    
137
    // START HACK TO MAKE THE DERIVED UNIT FACADE WORK
138
    // since we are getting implementations of DerivedUnitBase from the bulk
139
    // editor
140
    // and not derived unit facade objects,
141

    
142
    @Override
143
    public void setInput(Object input) {
144
        if(input instanceof TreeNode){
145
            input = ((TreeNode) input).getValue();
146
        }
147
        if(input instanceof GbifResponse){
148
            input = ((GbifResponse) input).getDerivedUnitFacade();
149
        }
150
        if (input.getClass().equals(DerivedUnit.class)) {
151
            DerivedUnit derivedUnit = (DerivedUnit)input;
152
            try {
153
                input = DerivedUnitFacade.NewInstance(derivedUnit,
154
                        PreferencesUtil.getDerivedUnitConfigurator());
155
            } catch (DerivedUnitFacadeNotSupportedException e) {
156
//                MessagingUtils.error(getClass(), e); //nothing should happen, later on the Details View will show an according information that it is not possible to open this data
157
            }
158
        }
159
        else if(input instanceof FieldUnit){
160
            input = DerivedUnitFacade.NewInstance(SpecimenOrObservationType.FieldUnit, (FieldUnit) input);
161
        }
162
        super.setInput(input);
163
    }
164

    
165
    @Override
166
    protected void markViewPartDirty() {
167
        if (getInput() instanceof DerivedUnitFacade) {
168
            DerivedUnitFacade facade = (DerivedUnitFacade) getInput();
169
            if(facade.innerDerivedUnit()!=null){
170
                getViewPart().changed(facade.innerDerivedUnit());
171
            }
172
            else if(facade.innerFieldUnit()!=null){
173
                getViewPart().changed(facade.innerFieldUnit());
174
            }
175
        }
176
        else{
177
            super.markViewPartDirty();
178
        }
179
    }
180

    
181
    // END HACK TO MAKE THE DERIVED UNIT FACADE WORK
182

    
183

    
184
    /** {@inheritDoc} */
185
    @Override
186
    protected void showParts() {
187
        // FIXME (CM) : Need to clean out this code.
188
        // Too much type checking to decide which detail view to display.
189
        // Need to build in a mechanism where navigators / editors are 'aware'
190
        // of the corresponding detail viewer.
191
        Object input = getInput();
192

    
193
        destroySections();
194
        if (input instanceof TaxonBase) {
195
            if(((TaxonBase) input).getName()==null){
196
                createEmptySection(rootElement);
197
            }
198
            else{
199
                createTaxonSections(rootElement);
200
            }
201

    
202
        } else if (input instanceof NonViralName) {
203
            createNameSections(rootElement);
204

    
205
        } else if (input instanceof Reference) {
206
            createReferenceSections(rootElement);
207

    
208
        } else if (input instanceof Team) {
209
            createTeamDetailSection(rootElement);
210

    
211
        } else if (input instanceof Person) {
212
            createPersonDetailSection(rootElement);
213

    
214
        } else if (input instanceof TeamOrPersonBase) {
215
            createTeamOrPersonBaseDetailSection(rootElement);
216

    
217
        } else if (input instanceof DescriptionBase) {
218
            if(input instanceof SpecimenDescription){
219
                //TODO: add more sections to DetailsView for SpecimenDescription
220
                createSpecimenDescriptionSection(rootElement);
221
            }
222
            else{
223
                Set<Marker> descriptionMarkers = ((DescriptionBase<?>) input).getMarkers();
224

    
225
                Boolean isUseDescription = false;
226
                for (Marker marker : descriptionMarkers) {
227
                    if (marker.getMarkerType()!= null && marker.getMarkerType().getUuid().equals(UsageTermCollection.uuidUseMarkerType)) {
228
                        isUseDescription = true;
229
                    }
230
                }
231
                if (((DescriptionBase<?>) input).isImageGallery()) {
232
                    createImageGallerySection(rootElement);
233

    
234
                } else if (isUseDescription) {
235
                    createUseDescriptionSection(rootElement);
236
                } else {
237
                    createDescriptionSection(rootElement);
238

    
239
                }
240
            }
241
        } else if (input instanceof DescriptionElementBase) {
242
            Set<Marker> descriptionMarkers = ((DescriptionElementBase) input).getInDescription().getMarkers();
243

    
244
            Boolean isUseDescription = false;
245
            for (Marker marker : descriptionMarkers) {
246
                if (marker.getMarkerType()!= null && marker.getMarkerType().getUuid().equals(UsageTermCollection.uuidUseMarkerType)) {
247
                    isUseDescription = true;
248
                }
249
            }
250

    
251
            if (isUseDescription == true && input instanceof CategoricalData) {
252
                createUseRecordSection(rootElement);
253
            } else {
254
                createDescriptionElementSection(rootElement);
255
            }
256

    
257
        } else if (input instanceof Media) {
258
            createMediaElementSection(rootElement);
259

    
260
        } else if (input instanceof DerivedUnitFacade) {
261
            if(((DerivedUnitFacade) input).getType()==SpecimenOrObservationType.FieldUnit){
262
                if(((DerivedUnitFacade) input).innerFieldUnit()==null){
263
                    MessagingUtils.error(DetailsViewer.class, "FieldUnit of facade is null", null);
264
                }
265
                else{
266
                    createFieldUnitSection(rootElement);
267
                }
268
            }
269
            else if(((DerivedUnitFacade) input).getType()==SpecimenOrObservationType.PreservedSpecimen){
270
                if(((DerivedUnitFacade) input).innerDerivedUnit()==null){
271
                    MessagingUtils.error(DetailsViewer.class, "DerivedUnit of facade is null", null);
272
                }
273
                else{
274
                    createDerivedUnitBaseElementSection(rootElement);
275
                }
276
            }
277
            else if(((DerivedUnitFacade) input).getType()==SpecimenOrObservationType.TissueSample){
278
                //TissueSample should only be created by using it's own class
279
                //in future using only one class with different SpecimenOrObservationTypes is desired
280
//                createTissueSampleSection(rootElement);
281
            }
282
            else{
283
                createDerivedUnitBaseElementSection(rootElement);
284
            }
285
        } else if (input instanceof DnaSample){
286
            DnaSample dnaSample = (DnaSample)input;
287
            if(dnaSample.getRecordBasis()==SpecimenOrObservationType.TissueSample){
288
                createTissueSampleSection(rootElement);
289
            }
290
            else if(dnaSample.getRecordBasis()==SpecimenOrObservationType.DnaSample){
291
                createDnaSampleSection(rootElement);
292
            }
293
        } else if (input instanceof MediaSpecimen){
294
            createMediaSpecimenSection(rootElement);
295
        }
296
        else if(input instanceof Sequence){
297
            createSequenceSection(rootElement);
298
        }
299
        else if(input instanceof SingleRead){
300
            createSingleReadSection(rootElement);
301
        }
302
        else if (input instanceof FeatureNodeContainer) {
303
            createFeatureDistributionSection(rootElement);
304

    
305
        }else if ((input instanceof PolytomousKeyNode) || (input instanceof PolytomousKeyRelationship)) {
306
            createPolytomousKeyNodeSection(rootElement);
307
        } else if (input instanceof User) {
308
            createUserSection(rootElement);
309
        } else if (input instanceof Group) {
310
            createGroupSection(rootElement);
311
        } else if (input instanceof TaxonRelationship) {
312
            createTaxonRelationshipSection(rootElement);
313
        } else if (input instanceof TermVocabulary) {
314
            createTermVocabularySection(rootElement);
315
        } else if (input instanceof DefinedTermBase) {
316
            createDefinedTermSection(rootElement);
317
        }
318
        else {
319
            createEmptySection(rootElement);
320
        }
321
        layout();
322
    }
323

    
324

    
325
    private void createEmptySection(RootElement parent) {
326
        destroySections();
327

    
328
        EmptySection emptySection = formFactory.createEmptySection(formFactory, parent, SWT.NONE);
329

    
330
        addPart(emptySection);
331
    }
332

    
333
    private void createGroupSection(RootElement parent) {
334
        destroySections();
335

    
336
        GroupDetailSection groupDetailSection = formFactory.createGroupDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE| ExpandableComposite.EXPANDED);
337
        MemberDetailSection memberDetailSection = formFactory.createMemberDetailSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
338
        GrantedAuthorityDetailSection grantedAuthorityDetailSection = formFactory.createGrantedAuthorityDetailSection(getConversationHolder(), parent,ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
339

    
340
        addPart(groupDetailSection);
341
        addPart(memberDetailSection);
342
        addPart(grantedAuthorityDetailSection);
343
    }
344

    
345
    /** {@inheritDoc} */
346
    @Override
347
    public ISelection getSelection() {
348
        return selection;
349
    }
350

    
351
    /** {@inheritDoc} */
352
    @Override
353
    public void setSelection(ISelection selection, boolean reveal) {
354
        this.selection = selection;
355
        if(this.selection!=null){
356
            SelectionChangedEvent selectionChangedEvent = new SelectionChangedEvent(this, selection);
357
            fireSelectionChanged(selectionChangedEvent);
358
        }
359
    }
360

    
361
    private void createTaxonSections(RootElement parent) {
362
        destroySections();
363

    
364
        ParsingMessagesSection parsingMessagesSection = formFactory.createParsingMessagesSection(getConversationHolder(), parent, this,
365
                ExpandableComposite.EXPANDED | ExpandableComposite.EXPANDED);
366

    
367
        TaxonBaseDetailSection taxonBaseDetailSection = formFactory.createTaxonBaseDetailSection(getConversationHolder(), parent, this,
368
        		ExpandableComposite.TWISTIE	| ExpandableComposite.EXPANDED);
369
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
370

    
371
        NonViralNameDetailSection nonViralNameSection = formFactory.createNonViralNameDetailSection(getConversationHolder(), parent, this,
372
        		ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
373
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
374

    
375
        NomenclaturalReferenceDetailSection referenceDetailSection = formFactory.createNomenclaturalReferenceDetailSection(getConversationHolder(), parent, this,
376
        		ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
377
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
378

    
379
        NomenclaturalStatusSection nomenclaturalStatusSection = formFactory.createNomenclaturalStatusSection(getConversationHolder(), parent,
380
        		ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
381
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
382

    
383
        //TODO RL
384
        if(!PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.IS_RL)){
385
	        ProtologueSection protologSection = formFactory.createProtologueSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
386
	        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
387

    
388
	        TypeDesignationSection typeDesignationSection = formFactory.createTypeDesignationSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
389
	        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
390

    
391
	        NameRelationshipDetailSection nameRelationshipSection = formFactory.createNameRelationshipDetailSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
392
	        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
393

    
394
			addPart(protologSection);
395
			addPart(typeDesignationSection);
396
			addPart(nameRelationshipSection);
397
        }
398

    
399
        addPart(parsingMessagesSection);
400
        addPart(taxonBaseDetailSection);
401
        addPart(nonViralNameSection);
402
        addPart(nomenclaturalStatusSection);
403
        addPart(referenceDetailSection);
404
    }
405

    
406
    private void createNameSections(RootElement parent) {
407
        destroySections();
408
        NonViralNameDetailSection nonViralNameSection = formFactory.createNonViralNameDetailSection(getConversationHolder(), parent, this,
409
        		ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
410
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
411

    
412
        NomenclaturalReferenceDetailSection referenceDetailSection = formFactory.createNomenclaturalReferenceDetailSection(getConversationHolder(), parent, this,
413
        		ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
414
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
415

    
416
        NomenclaturalStatusSection nomenclaturalStatusSection = formFactory.createNomenclaturalStatusSection(getConversationHolder(), parent,
417
        		ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
418
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
419

    
420
        addPart(nonViralNameSection);
421
        addPart(nomenclaturalStatusSection);
422
        addPart(referenceDetailSection);
423
//TODO RL
424
        if(!PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.IS_RL)){
425
			ProtologueSection protologSection = formFactory.createProtologueSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
426
	        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
427

    
428
	        TypeDesignationSection typeDesignationSection = formFactory.createTypeDesignationSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
429
	        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
430

    
431
	        NameRelationshipDetailSection nameRelationshipSection = formFactory.createNameRelationshipDetailSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
432
	        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
433
	        addPart(protologSection);
434
	        addPart(typeDesignationSection);
435
	        addPart(nameRelationshipSection);
436
        }
437
    }
438

    
439
    private void createReferenceSections(RootElement parent) {
440
        destroySections();
441

    
442
        ReferenceDetailSection referenceDetailSection = formFactory.createReferenceDetailSection(getConversationHolder(), parent, this,
443
        		ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
444

    
445
        addPart(referenceDetailSection);
446
    }
447

    
448
    private void createTeamOrPersonBaseDetailSection(RootElement parent) {
449
        destroySections();
450
        TeamOrPersonBaseDetailSection teamOrPersonBaseDetailSection = formFactory.createTeamOrPersonBaseDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
451

    
452
        addPart(teamOrPersonBaseDetailSection);
453
    }
454

    
455
    private void createTeamDetailSection(RootElement parent) {
456
        destroySections();
457
        TeamDetailSection teamDetailSection = formFactory.createTeamDetailSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
458

    
459
        addPart(teamDetailSection);
460
    }
461

    
462
    private void createPersonDetailSection(RootElement parent) {
463
        destroySections();
464
        PersonDetailSection personDetailSection = formFactory.createPersonDetailSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
465
        addPart(personDetailSection);
466
    }
467

    
468
    private void createDescriptionElementSection(RootElement parent) {
469
        destroySections();
470

    
471
        DescriptionElementDetailSection descriptionElementDetailSection = formFactory.createDescriptionElementDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
472

    
473
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
474

    
475
        DescriptionElementSourceSection descriptionElementSourceSection = formFactory.createDescriptionElementSourceSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
476

    
477
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
478

    
479
        DescriptionElementMediaSection descriptionElementMediaSection = formFactory.createDescriptionElementMediaSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
480

    
481
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
482

    
483
        addPart(descriptionElementDetailSection);
484
        addPart(descriptionElementSourceSection);
485
        addPart(descriptionElementMediaSection);
486
    }
487

    
488
    private void createDescriptionSection(RootElement parent) {
489
        destroySections();
490
        DescriptionDetailSection descriptionDetailSection = formFactory.createDescriptionDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
491

    
492
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
493

    
494
        NaturalLanguageSection naturalLanguageSection = formFactory.createNaturalLanguageSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
495

    
496
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
497

    
498
        DescribedSpecimenSection describedSpecimenSection = formFactory.createDescribedSpecimenSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
499

    
500
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
501

    
502
        //		DescriptionSourceSection descriptionSourceSection = (DescriptionSourceSection) formFactory
503
        //				.createEntityDetailSection(EntityDetailType.DESCRIPTIONSOURCE,
504
        //						getConversationHolder(), parent, Section.TWISTIE);
505
        //
506
        //		formFactory.createHorizontalSeparator(parent, SWT.BORDER);
507

    
508
        ScopeSection scopeSection = formFactory.createScopeSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
509

    
510
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
511

    
512
        addPart(descriptionDetailSection);
513
        addPart(naturalLanguageSection);
514
        addPart(describedSpecimenSection);
515
        //		addPart(descriptionSourceSection);
516
        addPart(scopeSection);
517
    }
518

    
519
    private void createSpecimenDescriptionSection(RootElement parent) {
520
        destroySections();
521
        DescriptionDetailSection descriptionDetailSection = formFactory.createDescriptionDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
522
        addPart(descriptionDetailSection);
523
    }
524

    
525
    private void createUseDescriptionSection(RootElement parent) {
526
        destroySections();
527
        DescriptionDetailSection descriptionDetailSection = formFactory.createDescriptionDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
528

    
529
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
530

    
531
        DescriptionSourceSection descriptionSourceSection = formFactory.createDescriptionSourceSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
532

    
533
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
534

    
535
        addPart(descriptionDetailSection);
536
        addPart(descriptionSourceSection);
537

    
538
    }
539

    
540
    private void createImageGallerySection(RootElement parent) {
541
        destroySections();
542
        DescriptionDetailSection descriptionDetailSection = formFactory.createDescriptionDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
543

    
544
        addPart(descriptionDetailSection);
545
    }
546

    
547
    private void createMediaElementSection(RootElement parent) {
548
        destroySections();
549

    
550
        MediaDetailsSection mediaDetailSection = formFactory.createMediaDetailsSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
551

    
552
        addPart(mediaDetailSection);
553
    }
554

    
555
    private void createDerivedUnitBaseElementSection(RootElement parent) {
556
        destroySections();
557

    
558
        DerivedUnitGeneralDetailSection derivedUnitGeneralDetailSection = formFactory.createDerivedUnitGeneralDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
559
        //TODO for DerivateEditor do not use facade anymore to avoid this special case handling #4539
560
        if(!(AbstractUtility.getActivePart() instanceof IDerivedUnitFacadePart)){
561
            derivedUnitGeneralDetailSection.setShowOnlyDerivedUnitData(true);
562
        }
563
        addPart(derivedUnitGeneralDetailSection);
564

    
565
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
566

    
567
        DerivedUnitBaseDetailSection derivedUnitBaseDetailSection = formFactory.createDerivedUnitBaseDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
568
        addPart(derivedUnitBaseDetailSection);
569

    
570
        //for editors working with facades
571
        if(AbstractUtility.getActivePart() instanceof IDerivedUnitFacadePart){
572
            formFactory.createHorizontalSeparator(parent, SWT.BORDER);
573
            GatheringEventDetailSection gatheringEventDetailSection = formFactory.createGatheringEventDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE);
574
            addPart(gatheringEventDetailSection);
575

    
576
            formFactory.createHorizontalSeparator(parent, SWT.BORDER);
577
            FieldUnitDetailSection fieldUnitDetailSection = formFactory.createFieldUnitDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE);
578
            addPart(fieldUnitDetailSection);
579
        }
580

    
581
        if(!PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.DETERMINATION_ONLY_FOR_FIELD_UNITS)){
582
            formFactory.createHorizontalSeparator(parent, SWT.BORDER);
583
            DeterminationDetailSection determinationDetailSection = formFactory.createDeterminationDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE);
584
            addPart(determinationDetailSection);
585
        }
586
        if(PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.SHOW_TAXON_ASSOCIATIONS)){
587
            formFactory.createHorizontalSeparator(parent, SWT.BORDER);
588
            TaxonAssociationDetailSection taxonAssociationDetailSection = formFactory.createTaxonAssociationDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
589
            addPart(taxonAssociationDetailSection);
590
        }
591

    
592
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
593
        IdentifierDetailSection identifierDetailSection = formFactory.createIdentifierDetailSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
594
        addPart(identifierDetailSection);
595

    
596
    }
597

    
598
    private void createFieldUnitSection(RootElement parent) {
599
        destroySections();
600

    
601
        FieldUnitGeneralDetailSection fielUnitGeneralDetailSection = formFactory.createFieldUnitGeneralDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
602

    
603
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
604

    
605
        GatheringEventDetailSection gatheringEventDetailSection = formFactory.createGatheringEventDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE);
606

    
607
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
608

    
609
        FieldUnitDetailSection fieldUnitDetailSection = formFactory.createFieldUnitDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE);
610

    
611
        addPart(fielUnitGeneralDetailSection);
612
        addPart(gatheringEventDetailSection);
613
        addPart(fieldUnitDetailSection);
614

    
615
        if(PreferencesUtil.getPreferenceStore().getBoolean(IPreferenceKeys.DETERMINATION_ONLY_FOR_FIELD_UNITS)){
616
            formFactory.createHorizontalSeparator(parent, SWT.BORDER);
617
            DeterminationDetailSection determinationDetailSection = formFactory.createDeterminationDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE);
618
            addPart(determinationDetailSection);
619
        }
620
    }
621

    
622
    private void createTissueSampleSection(RootElement parent) {
623
        destroySections();
624

    
625
        TissueSampleGeneralDetailSection section = formFactory.createTissueSampleGeneralDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
626

    
627
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
628

    
629
        SampleDesignationDetailSection sampleDesignationDetailSection = formFactory.createSampleDesignationDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
630

    
631
        addPart(section);
632
        addPart(sampleDesignationDetailSection);
633
    }
634

    
635
    private void createDnaSampleSection(RootElement parent) {
636
        destroySections();
637

    
638
        DnaSampleGeneralDetailSection section = formFactory.createDnaSampleGeneralDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
639

    
640
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
641

    
642
        DnaSamplePreparationPreservationSection preparationPreservationSection = formFactory.createDnaSamplePreparationPreservationSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
643

    
644
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
645

    
646
        DnaQualityDetailSection qualitySection = formFactory.createDnaQualityDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
647

    
648
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
649

    
650
        SampleDesignationDetailSection sampleDesignationDetailSection = formFactory.createSampleDesignationDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
651

    
652
        addPart(section);
653
        addPart(preparationPreservationSection);
654
        addPart(qualitySection);
655
        addPart(sampleDesignationDetailSection);
656
    }
657

    
658
    private void createSequenceSection(RootElement parent) {
659
        destroySections();
660

    
661
        SequenceGeneralDetailSection section = formFactory.createSequenceGeneralDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
662

    
663
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
664

    
665
        SequenceReferenceCollectionDetailSection referenceSection = formFactory.createSequenceReferenceCollectionDetailSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
666

    
667
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
668

    
669
        SequenceContigFileCollectionDetailSection contigFileSection = formFactory.createSequenceContigFileCollectionDetailSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
670

    
671

    
672
        addPart(section);
673
        addPart(referenceSection);
674
        addPart(contigFileSection);
675
    }
676

    
677
    private void createSingleReadSection(RootElement parent) {
678
        destroySections();
679

    
680
        SingleReadGeneralDetailSection section = formFactory.createSingleReadGeneralDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
681
        addPart(section);
682

    
683
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
684

    
685
        SingleReadPherogramCollectionDetailSection pherogramSection = formFactory.createSingleReadPherogramCollectionDetailSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
686
        addPart(pherogramSection);
687

    
688
    }
689

    
690
    private void createMediaSpecimenSection(RootElement parent) {
691
        destroySections();
692

    
693
        MediaSpecimenGeneralDetailSection generalSection = formFactory.createMediaSpecimenGeneralDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
694
        addPart(generalSection);
695

    
696
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
697

    
698
        RightsSection rightsSection = formFactory.createRightsSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE);
699
        addPart(rightsSection);
700

    
701
    }
702

    
703
    private void createFeatureDistributionSection(RootElement parent) {
704
        destroySections();
705

    
706
        FeatureDistributionDetailSection featureDistributionSection = formFactory.createFeatureDistributionDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
707

    
708
        addPart(featureDistributionSection);
709
    }
710

    
711
    private void createPolytomousKeyNodeSection(RootElement parent) {
712
        destroySections();
713

    
714
        PolytomousKeyDetailSection polytomousKeyDetailSection = formFactory.createPolytomousKeyDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE);
715

    
716
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
717

    
718
        PolytomousKeyNodeDetailSection polytomousKeyNodeDetailSection = formFactory.createPolytomousKeyNodeDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
719

    
720
        addPart(polytomousKeyDetailSection);
721
        addPart(polytomousKeyNodeDetailSection);
722

    
723
    }
724

    
725
    private void createUseRecordSection(RootElement parent) {
726
        destroySections();
727

    
728
        UseRecordDetailSection descriptionUseRecordSection = formFactory.createUseRecordDetailSection(getConversationHolder(), parent, this,ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
729

    
730
        formFactory.createHorizontalSeparator(parent, SWT.BORDER);
731

    
732
        addPart(descriptionUseRecordSection);
733

    
734

    
735
    }
736

    
737
    private void createUserSection(RootElement parent) {
738
        destroySections();
739

    
740
        UserDetailSection userDetailSection = formFactory.createUserDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
741

    
742
        GroupsByUserDetailSection groupByUserDetailSection = formFactory.createGroupsByUserDetailSection(getConversationHolder(), parent, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
743

    
744
        addPart(userDetailSection);
745
        addPart(groupByUserDetailSection);
746
    }
747

    
748
    private void createTaxonRelationshipSection(RootElement parent) {
749
        destroySections();
750

    
751
        TaxonRelationshipDetailSection taxonRelationshipDetailSection = formFactory.createTaxonRelationshipDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
752

    
753
        ReferencedEntityDetailSection referencedEntityBaseDetailSection = formFactory.createReferencedEntityDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
754
        addPart(taxonRelationshipDetailSection);
755
        addPart(referencedEntityBaseDetailSection);
756
    }
757

    
758
    private void createTermVocabularySection(RootElement parent) {
759
        destroySections();
760

    
761
        TermVocabularyDetailSection termVocabularyDetailSection = formFactory.createTermVocabularyDetailSection(getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
762
        addPart(termVocabularyDetailSection);
763
    }
764

    
765
    private void createDefinedTermSection(RootElement parent) {
766
        destroySections();
767

    
768
        AbstractFormSection<?> definedTermDetailSection = formFactory.createDefinedTermDetailSection(getInput().getClass(), getConversationHolder(), parent, this, ExpandableComposite.TWISTIE | ExpandableComposite.EXPANDED);
769
        addPart(definedTermDetailSection);
770
    }
771

    
772
}
(3-3/3)