Project

General

Profile

Download (173 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.ui.element;
10

    
11
import java.util.ArrayList;
12
import java.util.Comparator;
13
import java.util.HashSet;
14
import java.util.List;
15
import java.util.Map;
16
import java.util.Set;
17

    
18
import javax.inject.Inject;
19

    
20
import org.eclipse.e4.core.contexts.IEclipseContext;
21
import org.eclipse.jface.util.IPropertyChangeListener;
22
import org.eclipse.jface.viewers.ISelection;
23
import org.eclipse.jface.viewers.ISelectionProvider;
24
import org.eclipse.jface.window.Window;
25
//import org.eclipse.nebula.widgets.richtext.RichTextEditor;
26
import org.eclipse.swt.SWT;
27
import org.eclipse.swt.custom.StyledText;
28
import org.eclipse.swt.events.FocusAdapter;
29
import org.eclipse.swt.events.FocusEvent;
30
import org.eclipse.swt.events.FocusListener;
31
import org.eclipse.swt.events.MouseAdapter;
32
import org.eclipse.swt.events.MouseEvent;
33
import org.eclipse.swt.events.MouseListener;
34
import org.eclipse.swt.events.SelectionEvent;
35
import org.eclipse.swt.events.SelectionListener;
36
import org.eclipse.swt.events.TypedEvent;
37
import org.eclipse.swt.graphics.Color;
38
import org.eclipse.swt.graphics.Font;
39
import org.eclipse.swt.widgets.Composite;
40
import org.eclipse.swt.widgets.Control;
41
import org.eclipse.swt.widgets.Display;
42
import org.eclipse.swt.widgets.Event;
43
import org.eclipse.swt.widgets.Label;
44
import org.eclipse.ui.forms.IFormColors;
45
import org.eclipse.ui.forms.events.ExpansionAdapter;
46
import org.eclipse.ui.forms.events.ExpansionEvent;
47
import org.eclipse.ui.forms.widgets.ExpandableComposite;
48
import org.eclipse.ui.forms.widgets.FormToolkit;
49
import org.eclipse.ui.forms.widgets.Section;
50
import org.eclipse.ui.forms.widgets.TableWrapData;
51
import org.eclipse.ui.internal.forms.widgets.FormFonts;
52
import org.joda.time.DateTime;
53
import org.joda.time.Partial;
54
import org.springframework.security.core.GrantedAuthority;
55

    
56
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
57
import eu.etaxonomy.cdm.api.facade.DerivedUnitFacade;
58
import eu.etaxonomy.cdm.common.DOI;
59
import eu.etaxonomy.cdm.common.URI;
60
import eu.etaxonomy.cdm.hibernate.HibernateProxyHelper;
61
import eu.etaxonomy.cdm.model.agent.ORCID;
62
import eu.etaxonomy.cdm.model.agent.Person;
63
import eu.etaxonomy.cdm.model.agent.Team;
64
import eu.etaxonomy.cdm.model.common.Annotation;
65
import eu.etaxonomy.cdm.model.common.CdmBase;
66
import eu.etaxonomy.cdm.model.common.Credit;
67
import eu.etaxonomy.cdm.model.common.ExtendedTimePeriod;
68
import eu.etaxonomy.cdm.model.common.Extension;
69
import eu.etaxonomy.cdm.model.common.ICdmBase;
70
import eu.etaxonomy.cdm.model.common.IdentifiableSource;
71
import eu.etaxonomy.cdm.model.common.Identifier;
72
import eu.etaxonomy.cdm.model.common.LSID;
73
import eu.etaxonomy.cdm.model.common.Language;
74
import eu.etaxonomy.cdm.model.common.LanguageString;
75
import eu.etaxonomy.cdm.model.common.Marker;
76
import eu.etaxonomy.cdm.model.common.TimePeriod;
77
import eu.etaxonomy.cdm.model.common.VerbatimTimePeriod;
78
import eu.etaxonomy.cdm.model.common.VersionableEntity;
79
import eu.etaxonomy.cdm.model.description.CategoricalData;
80
import eu.etaxonomy.cdm.model.description.CommonTaxonName;
81
import eu.etaxonomy.cdm.model.description.DescriptionElementBase;
82
import eu.etaxonomy.cdm.model.description.DescriptionElementSource;
83
import eu.etaxonomy.cdm.model.description.Distribution;
84
import eu.etaxonomy.cdm.model.description.Feature;
85
import eu.etaxonomy.cdm.model.description.FeatureState;
86
import eu.etaxonomy.cdm.model.description.IndividualsAssociation;
87
import eu.etaxonomy.cdm.model.description.KeyStatement;
88
import eu.etaxonomy.cdm.model.description.MeasurementUnit;
89
import eu.etaxonomy.cdm.model.description.PresenceAbsenceTerm;
90
import eu.etaxonomy.cdm.model.description.QuantitativeData;
91
import eu.etaxonomy.cdm.model.description.State;
92
import eu.etaxonomy.cdm.model.description.StateData;
93
import eu.etaxonomy.cdm.model.description.StatisticalMeasure;
94
import eu.etaxonomy.cdm.model.description.StatisticalMeasurementValue;
95
import eu.etaxonomy.cdm.model.description.TaxonInteraction;
96
import eu.etaxonomy.cdm.model.description.TemporalData;
97
import eu.etaxonomy.cdm.model.description.TextData;
98
import eu.etaxonomy.cdm.model.location.NamedArea;
99
import eu.etaxonomy.cdm.model.location.NamedAreaLevel;
100
import eu.etaxonomy.cdm.model.location.Point;
101
import eu.etaxonomy.cdm.model.media.ExternalLink;
102
import eu.etaxonomy.cdm.model.media.ImageFile;
103
import eu.etaxonomy.cdm.model.media.Media;
104
import eu.etaxonomy.cdm.model.media.MediaRepresentation;
105
import eu.etaxonomy.cdm.model.media.MediaRepresentationPart;
106
import eu.etaxonomy.cdm.model.media.Rights;
107
import eu.etaxonomy.cdm.model.molecular.DnaSample;
108
import eu.etaxonomy.cdm.model.name.NameRelationship;
109
import eu.etaxonomy.cdm.model.name.NameRelationshipType;
110
import eu.etaxonomy.cdm.model.name.NameTypeDesignation;
111
import eu.etaxonomy.cdm.model.name.NomenclaturalStatus;
112
import eu.etaxonomy.cdm.model.name.SpecimenTypeDesignation;
113
import eu.etaxonomy.cdm.model.name.TextualTypeDesignation;
114
import eu.etaxonomy.cdm.model.occurrence.DerivedUnit;
115
import eu.etaxonomy.cdm.model.occurrence.DeterminationEvent;
116
import eu.etaxonomy.cdm.model.permission.GrantedAuthorityImpl;
117
import eu.etaxonomy.cdm.model.permission.Group;
118
import eu.etaxonomy.cdm.model.permission.User;
119
import eu.etaxonomy.cdm.model.reference.Reference;
120
import eu.etaxonomy.cdm.model.taxon.Taxon;
121
import eu.etaxonomy.cdm.model.taxon.TaxonNode;
122
import eu.etaxonomy.cdm.model.taxon.TaxonNodeAgentRelation;
123
import eu.etaxonomy.cdm.model.taxon.TaxonRelationshipType;
124
import eu.etaxonomy.cdm.model.term.DefinedTerm;
125
import eu.etaxonomy.cdm.model.term.DefinedTermBase;
126
import eu.etaxonomy.cdm.model.term.IEnumTerm;
127
import eu.etaxonomy.cdm.model.term.Representation;
128
import eu.etaxonomy.cdm.model.term.TermBase;
129
import eu.etaxonomy.cdm.model.term.TermTree;
130
import eu.etaxonomy.cdm.model.term.TermType;
131
import eu.etaxonomy.cdm.model.term.TermVocabulary;
132
import eu.etaxonomy.cdm.persistence.dto.TermDto;
133
import eu.etaxonomy.cdm.persistence.dto.TermVocabularyDto;
134
import eu.etaxonomy.cdm.strategy.parser.ParserProblem;
135
import eu.etaxonomy.taxeditor.model.MessagingUtils;
136
import eu.etaxonomy.taxeditor.preference.PreferencesUtil;
137
import eu.etaxonomy.taxeditor.store.StoreUtil;
138
import eu.etaxonomy.taxeditor.ui.combo.EnumComboElement;
139
import eu.etaxonomy.taxeditor.ui.combo.InverseTermWrapper;
140
import eu.etaxonomy.taxeditor.ui.combo.MisappliedRelationshipComboElement;
141
import eu.etaxonomy.taxeditor.ui.combo.NameRelationshipTypeCombo;
142
import eu.etaxonomy.taxeditor.ui.combo.VocabularyComboElement;
143
import eu.etaxonomy.taxeditor.ui.combo.term.TermComboElement;
144
import eu.etaxonomy.taxeditor.ui.dialog.CloneClassificationDetailElement;
145
import eu.etaxonomy.taxeditor.ui.element.MinMaxTextSection.UnitType;
146
import eu.etaxonomy.taxeditor.ui.mvc.element.DateElement;
147
import eu.etaxonomy.taxeditor.ui.openurl.IOpenUrlEnabled;
148
import eu.etaxonomy.taxeditor.ui.openurl.OpenUrlSelectorElement;
149
import eu.etaxonomy.taxeditor.ui.password.EditPasswordElement;
150
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
151
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
152
import eu.etaxonomy.taxeditor.ui.section.AbstractEntityCollectionElement;
153
import eu.etaxonomy.taxeditor.ui.section.EmptyElement;
154
import eu.etaxonomy.taxeditor.ui.section.agent.InstitutionDetailElement;
155
import eu.etaxonomy.taxeditor.ui.section.agent.InstitutionDetailSection;
156
import eu.etaxonomy.taxeditor.ui.section.agent.PersonDetailElement;
157
import eu.etaxonomy.taxeditor.ui.section.agent.PersonDetailSection;
158
import eu.etaxonomy.taxeditor.ui.section.agent.TeamDetailElement;
159
import eu.etaxonomy.taxeditor.ui.section.agent.TeamDetailSection;
160
import eu.etaxonomy.taxeditor.ui.section.agent.TeamMemberElement;
161
import eu.etaxonomy.taxeditor.ui.section.agent.TeamMemberSection;
162
import eu.etaxonomy.taxeditor.ui.section.agent.TeamOrPersonBaseDetailSection;
163
import eu.etaxonomy.taxeditor.ui.section.classification.ClassificationDetailElement;
164
import eu.etaxonomy.taxeditor.ui.section.classification.ClassificationDetailSection;
165
import eu.etaxonomy.taxeditor.ui.section.classification.TaxonNodeAgentRelationCollectionElement;
166
import eu.etaxonomy.taxeditor.ui.section.classification.TaxonNodeAgentRelationCollectionSection;
167
import eu.etaxonomy.taxeditor.ui.section.classification.TaxonNodeDetailElement;
168
import eu.etaxonomy.taxeditor.ui.section.classification.TaxonNodeDetailSection;
169
import eu.etaxonomy.taxeditor.ui.section.common.ExternalLinksElement;
170
import eu.etaxonomy.taxeditor.ui.section.common.ExternalLinksSection;
171
import eu.etaxonomy.taxeditor.ui.section.common.ReferenceEntityDetailElement;
172
import eu.etaxonomy.taxeditor.ui.section.common.ReferencedEntityDetailSection;
173
import eu.etaxonomy.taxeditor.ui.section.description.CommonNameSourceElement;
174
import eu.etaxonomy.taxeditor.ui.section.description.DerivedUnitElement;
175
import eu.etaxonomy.taxeditor.ui.section.description.DescribedSpecimenSection;
176
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionDetailElement;
177
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionDetailSection;
178
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementDetailElement;
179
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementDetailSection;
180
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementMediaSection;
181
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementSourceElement;
182
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementSourceSection;
183
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionSourceElement;
184
import eu.etaxonomy.taxeditor.ui.section.description.DescriptionSourceSection;
185
import eu.etaxonomy.taxeditor.ui.section.description.MediaDetailsSection;
186
import eu.etaxonomy.taxeditor.ui.section.description.ModifierElement;
187
import eu.etaxonomy.taxeditor.ui.section.description.ModifierSection;
188
import eu.etaxonomy.taxeditor.ui.section.description.NaturalLanguageDetailElement;
189
import eu.etaxonomy.taxeditor.ui.section.description.NaturalLanguageSection;
190
import eu.etaxonomy.taxeditor.ui.section.description.ScopeElement;
191
import eu.etaxonomy.taxeditor.ui.section.description.ScopeSection;
192
import eu.etaxonomy.taxeditor.ui.section.description.StateDataElement;
193
import eu.etaxonomy.taxeditor.ui.section.description.StateDataSection;
194
import eu.etaxonomy.taxeditor.ui.section.description.StatisticalMeasurementValueElement;
195
import eu.etaxonomy.taxeditor.ui.section.description.StatisticalMeasurementValueSection;
196
import eu.etaxonomy.taxeditor.ui.section.description.detail.AbstractDetailedDescriptionDetailElement;
197
import eu.etaxonomy.taxeditor.ui.section.description.detail.CategoricalDataDetailElement;
198
import eu.etaxonomy.taxeditor.ui.section.description.detail.CommonNameDetailElement;
199
import eu.etaxonomy.taxeditor.ui.section.description.detail.DistributionDetailElement;
200
import eu.etaxonomy.taxeditor.ui.section.description.detail.IndividualsAssociationDetailElement;
201
import eu.etaxonomy.taxeditor.ui.section.description.detail.QuantitativeDataDetailElement;
202
import eu.etaxonomy.taxeditor.ui.section.description.detail.TaxonInteractionDetailElement;
203
import eu.etaxonomy.taxeditor.ui.section.description.detail.TemporalDataDetailElement;
204
import eu.etaxonomy.taxeditor.ui.section.description.detail.TextDataDetailElement;
205
import eu.etaxonomy.taxeditor.ui.section.feature.CharacterDetailElement;
206
import eu.etaxonomy.taxeditor.ui.section.feature.CharacterDetailSection;
207
import eu.etaxonomy.taxeditor.ui.section.feature.CharacterDtoDetailElement;
208
import eu.etaxonomy.taxeditor.ui.section.feature.CharacterDtoDetailSection;
209
import eu.etaxonomy.taxeditor.ui.section.feature.CharacterNodeDetailElement;
210
import eu.etaxonomy.taxeditor.ui.section.feature.CharacterNodeDetailSection;
211
import eu.etaxonomy.taxeditor.ui.section.feature.CharacterNodeDtoDetailElement;
212
import eu.etaxonomy.taxeditor.ui.section.feature.CharacterNodeDtoDetailSection;
213
import eu.etaxonomy.taxeditor.ui.section.feature.FeatureDistributionDetailElement;
214
import eu.etaxonomy.taxeditor.ui.section.feature.FeatureDistributionDetailSection;
215
import eu.etaxonomy.taxeditor.ui.section.feature.InapplicableIfCollectionElement;
216
import eu.etaxonomy.taxeditor.ui.section.feature.InapplicableIfEntityCollectionSection;
217
import eu.etaxonomy.taxeditor.ui.section.feature.InapplicableIfEntityCollectionSectionForNode;
218
import eu.etaxonomy.taxeditor.ui.section.feature.OnlyApplicableIfCollectionElement;
219
import eu.etaxonomy.taxeditor.ui.section.feature.OnlyApplicableIfEntityCollectionSection;
220
import eu.etaxonomy.taxeditor.ui.section.feature.OnlyApplicableIfEntityCollectionSectionForNode;
221
import eu.etaxonomy.taxeditor.ui.section.feature.TermNodeDetailElement;
222
import eu.etaxonomy.taxeditor.ui.section.feature.TermNodeDetailSection;
223
import eu.etaxonomy.taxeditor.ui.section.feature.TermTreeDetailElement;
224
import eu.etaxonomy.taxeditor.ui.section.feature.TermTreeDetailElementForNode;
225
import eu.etaxonomy.taxeditor.ui.section.feature.TermTreeDetailSection;
226
import eu.etaxonomy.taxeditor.ui.section.feature.TermTreeDetailSectionForNode;
227
import eu.etaxonomy.taxeditor.ui.section.grantedAuthority.GrantedAuthorityCollectionElement;
228
import eu.etaxonomy.taxeditor.ui.section.grantedAuthority.GrantedAuthorityDetailElement;
229
import eu.etaxonomy.taxeditor.ui.section.grantedAuthority.GrantedAuthorityDetailSection;
230
import eu.etaxonomy.taxeditor.ui.section.group.GroupDetailElement;
231
import eu.etaxonomy.taxeditor.ui.section.group.GroupDetailSection;
232
import eu.etaxonomy.taxeditor.ui.section.group.MemberDetailElement;
233
import eu.etaxonomy.taxeditor.ui.section.group.MemberDetailSection;
234
import eu.etaxonomy.taxeditor.ui.section.key.PolytomousKeyDetailElement;
235
import eu.etaxonomy.taxeditor.ui.section.key.PolytomousKeyDetailSection;
236
import eu.etaxonomy.taxeditor.ui.section.key.PolytomousKeyNodeDetailElement;
237
import eu.etaxonomy.taxeditor.ui.section.key.PolytomousKeyNodeDetailSection;
238
import eu.etaxonomy.taxeditor.ui.section.key.ScopeRestrictionSection;
239
import eu.etaxonomy.taxeditor.ui.section.key.TaxonomicScopeSection;
240
import eu.etaxonomy.taxeditor.ui.section.media.ImageFileElement;
241
import eu.etaxonomy.taxeditor.ui.section.media.MediaDetailElement;
242
import eu.etaxonomy.taxeditor.ui.section.media.MediaMetaElement;
243
import eu.etaxonomy.taxeditor.ui.section.media.MediaRepresentationElement;
244
import eu.etaxonomy.taxeditor.ui.section.media.MediaRepresentationPartElement;
245
import eu.etaxonomy.taxeditor.ui.section.media.MediaRepresentationPartSection;
246
import eu.etaxonomy.taxeditor.ui.section.media.MediaRepresentationSection;
247
import eu.etaxonomy.taxeditor.ui.section.media.MediaSection;
248
import eu.etaxonomy.taxeditor.ui.section.name.AuthorshipDetailElement;
249
import eu.etaxonomy.taxeditor.ui.section.name.AuthorshipDetailSection;
250
import eu.etaxonomy.taxeditor.ui.section.name.HybridDetailElement;
251
import eu.etaxonomy.taxeditor.ui.section.name.HybridDetailSection;
252
import eu.etaxonomy.taxeditor.ui.section.name.NameDetailElement;
253
import eu.etaxonomy.taxeditor.ui.section.name.NameDetailSection;
254
import eu.etaxonomy.taxeditor.ui.section.name.NameRelationshipDetailElement;
255
import eu.etaxonomy.taxeditor.ui.section.name.NameRelationshipDetailSection;
256
import eu.etaxonomy.taxeditor.ui.section.name.NameTypeDesignationElement;
257
import eu.etaxonomy.taxeditor.ui.section.name.NomenclaturalStatusElement;
258
import eu.etaxonomy.taxeditor.ui.section.name.NomenclaturalStatusSection;
259
import eu.etaxonomy.taxeditor.ui.section.name.NonViralNameDetailElement;
260
import eu.etaxonomy.taxeditor.ui.section.name.NonViralNameDetailSection;
261
import eu.etaxonomy.taxeditor.ui.section.name.RuleConsideredElement;
262
import eu.etaxonomy.taxeditor.ui.section.name.SpecimenTypeDesignationElement;
263
import eu.etaxonomy.taxeditor.ui.section.name.TextTypeDesignationElement;
264
import eu.etaxonomy.taxeditor.ui.section.name.TypeDesignationSection;
265
import eu.etaxonomy.taxeditor.ui.section.occurrence.CollectingAreaDetailElement;
266
import eu.etaxonomy.taxeditor.ui.section.occurrence.CollectingAreasDetailSection;
267
import eu.etaxonomy.taxeditor.ui.section.occurrence.CollectionDetailElement;
268
import eu.etaxonomy.taxeditor.ui.section.occurrence.CurrentDeterminationDetailSection;
269
import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitBaseDetailElement;
270
import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitBaseDetailSection;
271
import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitGeneralDetailElement;
272
import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitGeneralDetailSection;
273
import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitMediaSection;
274
import eu.etaxonomy.taxeditor.ui.section.occurrence.DeterminationDetailElement;
275
import eu.etaxonomy.taxeditor.ui.section.occurrence.DeterminationDetailSection;
276
import eu.etaxonomy.taxeditor.ui.section.occurrence.DeterminationEventDetailElement;
277
import eu.etaxonomy.taxeditor.ui.section.occurrence.DeterminationHistoryDetailSection;
278
import eu.etaxonomy.taxeditor.ui.section.occurrence.EmptySection;
279
import eu.etaxonomy.taxeditor.ui.section.occurrence.FieldUnitDetailElement;
280
import eu.etaxonomy.taxeditor.ui.section.occurrence.FieldUnitDetailSection;
281
import eu.etaxonomy.taxeditor.ui.section.occurrence.FieldUnitGeneralDetailElement;
282
import eu.etaxonomy.taxeditor.ui.section.occurrence.FieldUnitGeneralDetailSection;
283
import eu.etaxonomy.taxeditor.ui.section.occurrence.GatheringEventDetailElement;
284
import eu.etaxonomy.taxeditor.ui.section.occurrence.GatheringEventDetailSection;
285
import eu.etaxonomy.taxeditor.ui.section.occurrence.GeoScopeDetailSection;
286
import eu.etaxonomy.taxeditor.ui.section.occurrence.GeoScopePolyKeyDetailSection;
287
import eu.etaxonomy.taxeditor.ui.section.occurrence.OriginalLabelDataSection;
288
import eu.etaxonomy.taxeditor.ui.section.occurrence.SourceCollectionDetailSection;
289
import eu.etaxonomy.taxeditor.ui.section.occurrence.SpecimenCollectionDetailElement;
290
import eu.etaxonomy.taxeditor.ui.section.occurrence.SpecimenCollectionDetailSection;
291
import eu.etaxonomy.taxeditor.ui.section.occurrence.association.DerivedUnitTypeDesignationElement;
292
import eu.etaxonomy.taxeditor.ui.section.occurrence.association.DerivedUnitTypeDesignationSection;
293
import eu.etaxonomy.taxeditor.ui.section.occurrence.association.TaxonAssociationDetailElement;
294
import eu.etaxonomy.taxeditor.ui.section.occurrence.association.TaxonAssociationDetailSection;
295
import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenCurrentDeterminationDetailSection;
296
import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenDetailElement;
297
import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenDetailSection;
298
import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenGeneralDetailElement;
299
import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenGeneralDetailSection;
300
import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenSourceCollectionDetailSection;
301
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AbstractSampleDesignationDetailSection;
302
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationCloningDetailElement;
303
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationCloningDetailSection;
304
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationGelPhotoCollectionDetailSection;
305
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationGelPhotoDetailElement;
306
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationGeneralDetailElement;
307
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationGeneralDetailSection;
308
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationPrimerDetailElement;
309
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationPrimerDetailSection;
310
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.CurrentSampleDesignationDetailSection;
311
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaQualityDetailElement;
312
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaQualityDetailSection;
313
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaSampleGeneralDetailElement;
314
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaSampleGeneralDetailSection;
315
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaSamplePreparationPreservationDetailElement;
316
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaSamplePreparationPreservationSection;
317
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.PrimerGeneralDetailElement;
318
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SampleDesignationDetailElement;
319
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SampleDesignationDetailSection;
320
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SampleDesignationHistoryDetailSection;
321
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SampleDesignationTextDetailElement;
322
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceContigFileCollectionDetailSection;
323
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceGeneralDetailElement;
324
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceGeneralDetailSection;
325
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceReferenceCollectionDetailElement;
326
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceReferenceCollectionDetailSection;
327
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SingleReadGeneralDetailElement;
328
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SingleReadGeneralDetailSection;
329
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SingleReadPherogramCollectionDetailSection;
330
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.TissueSampleGeneralDetailElement;
331
import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.TissueSampleGeneralDetailSection;
332
import eu.etaxonomy.taxeditor.ui.section.occurrence.media.MediaSpecimenGeneralDetailElement;
333
import eu.etaxonomy.taxeditor.ui.section.occurrence.media.MediaSpecimenGeneralDetailSection;
334
import eu.etaxonomy.taxeditor.ui.section.reference.AdvancedNomenclaturalSourceElement;
335
import eu.etaxonomy.taxeditor.ui.section.reference.AdvancedSourceElement;
336
import eu.etaxonomy.taxeditor.ui.section.reference.NomenclaturalReferenceDetailElement;
337
import eu.etaxonomy.taxeditor.ui.section.reference.NomenclaturalReferenceDetailSection;
338
import eu.etaxonomy.taxeditor.ui.section.reference.NomenclaturalSourceElement;
339
import eu.etaxonomy.taxeditor.ui.section.reference.OriginalSourceAdvancedSection;
340
import eu.etaxonomy.taxeditor.ui.section.reference.OriginalSourceElement;
341
import eu.etaxonomy.taxeditor.ui.section.reference.ReferenceDetailElement;
342
import eu.etaxonomy.taxeditor.ui.section.reference.ReferenceDetailSection;
343
import eu.etaxonomy.taxeditor.ui.section.reference.SecundumSourceElement;
344
import eu.etaxonomy.taxeditor.ui.section.reference.SingleSourceSection;
345
import eu.etaxonomy.taxeditor.ui.section.supplemental.AnnotationElement;
346
import eu.etaxonomy.taxeditor.ui.section.supplemental.AnnotationSection;
347
import eu.etaxonomy.taxeditor.ui.section.supplemental.CdmBaseElement;
348
import eu.etaxonomy.taxeditor.ui.section.supplemental.CdmBaseSection;
349
import eu.etaxonomy.taxeditor.ui.section.supplemental.CreditElement;
350
import eu.etaxonomy.taxeditor.ui.section.supplemental.CreditSection;
351
import eu.etaxonomy.taxeditor.ui.section.supplemental.ExtensionElement;
352
import eu.etaxonomy.taxeditor.ui.section.supplemental.ExtensionSection;
353
import eu.etaxonomy.taxeditor.ui.section.supplemental.HeadlineSection;
354
import eu.etaxonomy.taxeditor.ui.section.supplemental.IdentifiableSourceElement;
355
import eu.etaxonomy.taxeditor.ui.section.supplemental.MarkerElement;
356
import eu.etaxonomy.taxeditor.ui.section.supplemental.MarkerSection;
357
import eu.etaxonomy.taxeditor.ui.section.supplemental.RightsElement;
358
import eu.etaxonomy.taxeditor.ui.section.supplemental.RightsSection;
359
import eu.etaxonomy.taxeditor.ui.section.supplemental.SourceSection;
360
import eu.etaxonomy.taxeditor.ui.section.supplemental.VersionElement;
361
import eu.etaxonomy.taxeditor.ui.section.supplemental.VersionSection;
362
import eu.etaxonomy.taxeditor.ui.section.supplemental.identifier.DerivedUnitFacadeIdentifierSection;
363
import eu.etaxonomy.taxeditor.ui.section.supplemental.identifier.IdentifierElement;
364
import eu.etaxonomy.taxeditor.ui.section.supplemental.identifier.IdentifierSection;
365
import eu.etaxonomy.taxeditor.ui.section.taxon.ParsingMessageElement;
366
import eu.etaxonomy.taxeditor.ui.section.taxon.ParsingMessagesSection;
367
import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonBaseDetailElement;
368
import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonBaseDetailSection;
369
import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonDetailElement;
370
import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonDetailSection;
371
import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonOfRelationshipElement;
372
import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonRelationshipDetailElement;
373
import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonRelationshipDetailSection;
374
import eu.etaxonomy.taxeditor.ui.section.user.GroupsByUserDetailElement;
375
import eu.etaxonomy.taxeditor.ui.section.user.GroupsByUserDetailSection;
376
import eu.etaxonomy.taxeditor.ui.section.user.UserDetailElement;
377
import eu.etaxonomy.taxeditor.ui.section.user.UserDetailSection;
378
import eu.etaxonomy.taxeditor.ui.section.userecords.UseRecordDetailElement;
379
import eu.etaxonomy.taxeditor.ui.section.userecords.UseRecordDetailSection;
380
import eu.etaxonomy.taxeditor.ui.section.vocabulary.DefinedTermDetailElement;
381
import eu.etaxonomy.taxeditor.ui.section.vocabulary.DefinedTermDetailSection;
382
import eu.etaxonomy.taxeditor.ui.section.vocabulary.FeatureDetailElement;
383
import eu.etaxonomy.taxeditor.ui.section.vocabulary.MeasurementUnitCollectionElement;
384
import eu.etaxonomy.taxeditor.ui.section.vocabulary.MeasurementUnitCollectionSection;
385
import eu.etaxonomy.taxeditor.ui.section.vocabulary.MeasurementUnitDtoCollectionElement;
386
import eu.etaxonomy.taxeditor.ui.section.vocabulary.MeasurementUnitDtoCollectionSection;
387
import eu.etaxonomy.taxeditor.ui.section.vocabulary.NamedAreaDetailSection;
388
import eu.etaxonomy.taxeditor.ui.section.vocabulary.PresenceAbsenceTermDetailElement;
389
import eu.etaxonomy.taxeditor.ui.section.vocabulary.RecommendedModifierDtoVocabulariesElement;
390
import eu.etaxonomy.taxeditor.ui.section.vocabulary.RecommendedModifierVocabulariesCollectionSection;
391
import eu.etaxonomy.taxeditor.ui.section.vocabulary.RecommendedModifierVocabulariesDtoCollectionSection;
392
import eu.etaxonomy.taxeditor.ui.section.vocabulary.RecommendedModifierVocabulariesElement;
393
import eu.etaxonomy.taxeditor.ui.section.vocabulary.StateVocabularyCollectionElement;
394
import eu.etaxonomy.taxeditor.ui.section.vocabulary.StateVocabularyCollectionSection;
395
import eu.etaxonomy.taxeditor.ui.section.vocabulary.StateVocabularyDtoCollectionElement;
396
import eu.etaxonomy.taxeditor.ui.section.vocabulary.StateVocabularyDtoCollectionSection;
397
import eu.etaxonomy.taxeditor.ui.section.vocabulary.StatisticalMeasureCollectionElement;
398
import eu.etaxonomy.taxeditor.ui.section.vocabulary.StatisticalMeasureCollectionSection;
399
import eu.etaxonomy.taxeditor.ui.section.vocabulary.StatisticalMeasureDtoCollectionElement;
400
import eu.etaxonomy.taxeditor.ui.section.vocabulary.StatisticalMeasureDtoCollectionSection;
401
import eu.etaxonomy.taxeditor.ui.section.vocabulary.TermMediaSection;
402
import eu.etaxonomy.taxeditor.ui.section.vocabulary.TermVocabularyDetailElement;
403
import eu.etaxonomy.taxeditor.ui.section.vocabulary.TermVocabularyDetailSection;
404
import eu.etaxonomy.taxeditor.ui.selection.CommonNameReferenceSelectionElement;
405
import eu.etaxonomy.taxeditor.ui.selection.EntitySelectionElement;
406
import eu.etaxonomy.taxeditor.ui.selection.EntitySelectionElementWithAbbreviatedTitle;
407
import eu.etaxonomy.taxeditor.ui.selection.EntitySelectionElementWithIdInVocabulary;
408
import eu.etaxonomy.taxeditor.ui.selection.NomenclaturalAuthorTeamSelectionElement;
409
import eu.etaxonomy.taxeditor.ui.selection.TaxonNodeSelectionElement;
410
import eu.etaxonomy.taxeditor.view.detail.CdmSectionPart;
411

    
412
/**
413
 * CdmFormFactory class.
414
 *
415
 * @author n.hoffmann
416
 * @created Feb 24, 2010
417
 */
418
public class CdmFormFactory extends FormToolkit {
419

    
420
    private BoldFontHolder2 boldFontHolder2;
421
    private MouseListener selectionMouseHandler;
422
    private FocusListener selectionFocusHandler;
423

    
424
    @Inject
425
    private IEclipseContext context;
426

    
427
    private final Set<SelectionListener> selectionListenerList = new HashSet<>();
428

    
429
    private final List<IPropertyChangeListener> propertyChangeListeners = new ArrayList<>();
430

    
431
    private final int orientation = Window.getDefaultOrientation();
432
    private ISelectionProvider selectionProvider;
433

    
434
    /** Constant <code>EMPTY_SELECTION</code> */
435
    public static ISelection EMPTY_SELECTION = new ISelection() {
436
        @Override
437
        public boolean isEmpty() {
438
            return true;
439
        }
440
    };
441

    
442
    /**
443
     * @author n.hoffmann
444
     * @date Jan 25, 2010
445
     */
446
    private class SelectionMouseHandler extends MouseAdapter {
447
        @Override
448
        public void mouseDown(MouseEvent e) {
449
            notifySelectionListeners(e);
450
        }
451
    }
452

    
453
    /**
454
     * @author n.hoffmann
455
     * @date Jan 25, 2010
456
     */
457
    private class SelectionFocusHandler extends FocusAdapter {
458
        @Override
459
        public void focusGained(FocusEvent e) {
460
            notifySelectionListeners(e);
461
        }
462
    }
463

    
464
    private void notifySelectionListeners(TypedEvent e) {
465
        Event event = new Event();
466
        event.widget = e.widget;
467
        SelectionEvent selectionEvent = new SelectionEvent(event);
468

    
469
        for (SelectionListener listener : selectionListenerList) {
470
            listener.widgetSelected(selectionEvent);
471
        }
472
    }
473

    
474
    public CdmFormFactory(Display display) {
475
        this(display, null);
476
    }
477

    
478
    public CdmFormFactory(Display display, ISelectionProvider selectionProvider) {
479
        super(display);
480
        this.selectionProvider = selectionProvider;
481
        init();
482
    }
483

    
484
    private void init() {
485
        boldFontHolder2 = new BoldFontHolder2();
486
        selectionMouseHandler = new SelectionMouseHandler();
487
        selectionFocusHandler = new SelectionFocusHandler();
488
    }
489

    
490
    public IEclipseContext getContext() {
491
        return context;
492
    }
493

    
494
    /**
495
     * Creates an instance initialized with the correct selectionProvider
496
     *
497
     * Make sure to remove the instance when the entityComposite disposes via
498
     * destroySelectionArbitrator(..)
499
     *
500
     * @param entityElement
501
     *            a {@link eu.etaxonomy.taxeditor.ui.element.IEntityElement}
502
     *            object.
503
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.SelectionArbitrator}
504
     *         object.
505
     */
506
    public SelectionArbitrator createSelectionArbitrator(IEntityElement entityElement) {
507
        SelectionArbitrator selectionArbitrator = new SelectionArbitrator(entityElement);
508
        selectionArbitrator.addSelectionProvider(selectionProvider);
509
        selectionProvider.addSelectionChangedListener(selectionArbitrator);
510
        addSelectionListener(selectionArbitrator);
511
        return selectionArbitrator;
512
    }
513

    
514
    /**
515
     * <p>
516
     * destroySelectionArbitrator
517
     * </p>
518
     *
519
     * @param selectionArbitrator
520
     *            a
521
     *            {@link eu.etaxonomy.taxeditor.ui.element.SelectionArbitrator}
522
     *            object.
523
     */
524
    public void destroySelectionArbitrator(SelectionArbitrator selectionArbitrator) {
525
        if(selectionArbitrator==null){
526
            return;
527
        }
528
        removeSelectionListener(selectionArbitrator);
529
        if (selectionProvider != null) {
530
            selectionProvider.removeSelectionChangedListener(selectionArbitrator);
531
        } else {
532
            MessagingUtils.error(this.getClass(),
533
                    "Tried to destroy a selection listener from this factories listeners but was null", null);
534
        }
535
    }
536

    
537
    /**
538
     * <p>
539
     * Adapts the {@link AbstractCdmFormElement}:<br>
540
     * - sets the {@link IPropertyChangeListener}s handled by this class
541
     * </p>
542
     *
543
     * @param formElement
544
     *            a
545
     *            {@link eu.etaxonomy.taxeditor.ui.element.AbstractCdmFormElement}
546
     *            object.
547
     */
548
    public void adapt(ICdmFormElement formElement) {
549
        formElement.setPropertyChangeListeners(propertyChangeListeners);
550
    }
551

    
552
    @Override
553
    public void adapt(Control control, boolean trackFocus, boolean trackKeyboard) {
554
        if (trackFocus) {
555
            control.addFocusListener(selectionFocusHandler);
556
        }
557
        super.adapt(control, trackFocus, trackKeyboard);
558
    }
559

    
560
    @Override
561
    public void adapt(Composite composite) {
562
        composite.addMouseListener(selectionMouseHandler);
563

    
564
        super.adapt(composite);
565
    }
566

    
567
    /**
568
     * destroyElement
569
     *
570
     * @param formElement
571
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
572
     *            object.
573
     */
574
    public void destroyElement(ICdmFormElement formElement) {
575
        // return if element was not initialized
576
        if (formElement == null) {
577
            return;
578
        }
579
        // destroy selection arbitrator, if any
580
        if (formElement instanceof ISelectableElement) {
581
            destroySelectionArbitrator(((ISelectableElement) formElement).getSelectionArbitrator());
582
        }
583
        // remove this element form its parents list of elements
584
        // ICdmFormElement parentElement = formElement.getParentElement();
585
        // if(parentElement != null){
586
        // parentElement.removeElement(formElement);
587
        // }
588
        // call destroy on child elements recursively
589

    
590
        Set<ICdmFormElement> tempFormElements = new HashSet<>();
591
        tempFormElements.addAll(formElement.getElements());
592
        for(ICdmFormElement childElement: tempFormElements) {
593
            destroyElement(childElement);
594
        }
595
        // dispose of the controls
596
        for (Control control : formElement.getControls()) {
597
            // we added the layoutComposite of the parental element as the
598
            // layout composite to this formElement
599
            // but we do not want to destroy it.
600
            if (control.equals(formElement.getLayoutComposite())) {
601
                continue;
602
            } else {
603
                if (!control.isDisposed()){
604
                    control.dispose();
605
                }
606
                control = null; //needed?
607
            }
608
        }
609
    }
610

    
611
    /**
612
     * createEmptyCell
613
     *
614
     * @param parent
615
     *            a {@link org.eclipse.swt.widgets.Composite} object.
616
     * @return a {@link org.eclipse.swt.widgets.Label} object.
617
     */
618
    public Label createEmptyCell(Composite parent) {
619
        return this.createLabel(parent, null);
620
    }
621

    
622
    /**
623
     * createMultiLanguageTextElement
624
     *
625
     * @param parentElement
626
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
627
     *            object.
628
     * @param labelString
629
     *            a {@link java.lang.String} object.
630
     * @param multilanguageText
631
     *            a {@link java.util.Map} object.
632
     * @param textHeight
633
     *            a int.
634
     * @param style
635
     *            a int.
636
     * @return a
637
     *         {@link eu.etaxonomy.taxeditor.ui.element.MultilanguageTextElement}
638
     *         object.
639
     */
640
    public MultilanguageTextElement createMultiLanguageTextElement(ICdmFormElement parentElement, String labelString,
641
            Map<Language, LanguageString> multilanguageText, int textHeight, int style) {
642
        MultilanguageTextElement element = new MultilanguageTextElement(this, parentElement, labelString,
643
                multilanguageText, textHeight, style);
644
        adapt(element);
645
        parentElement.addElement(element);
646
        return element;
647
    }
648

    
649
    /**
650
     * createMultiLanguageTextElement
651
     *
652
     * @param parentElement
653
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
654
     *            object.
655
     *
656
     * @param Representation
657
     *            a {@link eu.etaxonomy.cdm.model.term.Representation} object.
658
     * @param textHeight
659
     *            a int.
660
     * @param style
661
     *            a int.
662
     * @return a
663
     *         {@link eu.etaxonomy.taxeditor.ui.element.RepresentationElement}
664
     *         object.
665
     */
666
    public RepresentationElement createRepresentationElement(ICdmFormElement parentElement, Representation representation, TermBase term,int textHeight, int style, boolean fillDetails) {
667
        RepresentationElement element = new RepresentationElement(this, parentElement, representation, term, textHeight, style, fillDetails);
668
        adapt(element);
669
        parentElement.addElement(element);
670
        return element;
671
    }
672

    
673
    /**
674
     * createMultiLanguageTextElement
675
     *
676
     * @param parentElement
677
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
678
     *            object.
679
     *
680
     * @param Representation
681
     *            a {@link eu.etaxonomy.cdm.model.term.Representation} object.
682
     * @param textHeight
683
     *            a int.
684
     * @param style
685
     *            a int.
686
     * @return a
687
     *         {@link eu.etaxonomy.taxeditor.ui.element.RepresentationElement}
688
     *         object.
689
     */
690
    public TranslatableRepresentationElement createTranslatableRepresentationElement(ICdmFormElement parentElement, Representation representation, TermBase term,int textHeight, int style, boolean fillDetails) {
691
        TranslatableRepresentationElement element = new TranslatableRepresentationElement(this, parentElement, representation, term, textHeight, style, fillDetails);
692
        adapt(element);
693
        parentElement.addElement(element);
694
        return element;
695
    }
696

    
697
    public TranslatableRepresentationElement createTranslatableRepresentationElementDto(ICdmFormElement parentElement, Representation representation, TermDto term,int textHeight, int style, boolean fillDetails) {
698
        TranslatableRepresentationElement element = new TranslatableRepresentationElement(this, parentElement, representation, term, textHeight, style, fillDetails);
699
        adapt(element);
700
        parentElement.addElement(element);
701
        return element;
702
    }
703

    
704

    
705
    public KeyStatementElement createKeyStatementElement(ICdmFormElement parentElement, String labelString,
706
            KeyStatement keyStatement, int textHeight, int style) {
707
        KeyStatementElement element = new KeyStatementElement(this, parentElement, labelString, keyStatement,
708
                textHeight, style);
709
        adapt(element);
710
        parentElement.addElement(element);
711
        return element;
712
    }
713

    
714
    /**
715
     * Creates a text field with a label. The initial content will be the return value of the initalObject's {@link #toString()}
716
     * method.<br>
717
     * <b>Note</b>: if initialObject is <code>null</code> then an empty string is used.
718
     * @param parentElement the parent container
719
     * @param labelString the label name
720
     * @param initialObject the object from which the <code>toString()</code> method is called
721
     * @param style {@link SWT} style constant
722
     * @return the created textfield with label
723
     */
724
    public TextWithLabelElement createTextWithLabelElement(ICdmFormElement parentElement, String labelString,
725
            Object initialObject, int style) {
726
        return createTextWithLabelElement(parentElement, labelString, initialObject==null?"":initialObject.toString(), style);
727
    }
728

    
729
    /**
730
     * <p>
731
     * createTextWithLabelElement
732
     * </p>
733
     *
734
     * @param parentElement
735
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
736
     *            object.
737
     * @param labelString
738
     *            a {@link java.lang.String} object.
739
     * @param initialText
740
     *            a {@link java.lang.String} object.
741
     * @param style
742
     *            a int.
743
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.TextWithLabelElement}
744
     *         object.
745
     */
746
    public TextWithLabelElement createTextWithLabelElement(ICdmFormElement parentElement, String labelString,
747
            String initialText, int style) {
748
        return createTextWithLabelElement(parentElement, labelString, initialText, null, style);
749
    }
750

    
751
    /**
752
     * createTextWithLabelElement
753
     *
754
     * @param parentElement
755
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
756
     *            object.
757
     * @param labelString
758
     *            a {@link java.lang.String} object.
759
     * @param initialText
760
     *            a {@link java.lang.String} object.
761
     * @param textLimit maximal number of characters allowed
762
     * @param style
763
     *            a int.
764
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.TextWithLabelElement}
765
     *         object.
766
     */
767
    public TextWithLabelElement createTextWithLabelElement(ICdmFormElement parentElement, String labelString,
768
            String initialText, Integer textLimit, int style) {
769
        if(initialText==null){
770
            initialText = "";
771
        }
772

    
773
        TextWithLabelElement element = new TextWithLabelElement(this, parentElement, labelString, initialText, null,
774
                textLimit, style);
775
        adapt(element);
776
        parentElement.addElement(element);
777
        return element;
778
    }
779

    
780
    public TextWithLabelElement createMultiLineTextWithLabel(ICdmFormElement parentElement, String labelString,
781
            int textHeight, int style) {
782
        TextWithLabelElement element = new TextWithLabelElement(this, parentElement, labelString, "", textHeight, true, style);
783
        adapt(element);
784
        parentElement.addElement(element);
785
        return element;
786
    }
787

    
788
    public LsidWithExceptionLabelElement createLsidWithExceptionLabelElement(ICdmFormElement parentElement, String labelString,
789
            LSID initialLsid, int style) {
790
        LsidWithExceptionLabelElement element = new LsidWithExceptionLabelElement(this, parentElement, labelString, initialLsid, null, style);
791
        adapt(element);
792
        parentElement.addElement(element);
793
        return element;
794
    }
795

    
796
    public UriWithLabelElement createUriWithLabelElement(ICdmFormElement parentElement, String labelString,
797
            URI initialUri, int style) {
798
        UriWithLabelElement element = new UriWithLabelElement(this, parentElement, labelString, initialUri, null, style);
799
        adapt(element);
800
        parentElement.addElement(element);
801
        return element;
802
    }
803
    public UriWithLabelElement createUriWithLabelElement(ICdmFormElement parentElement, String labelString,
804
            URI initialUri,Integer textHeight, int style) {
805
        UriWithLabelElement element = new UriWithLabelElement(this, parentElement, labelString, initialUri, textHeight, style);
806
        adapt(element);
807
        parentElement.addElement(element);
808
        return element;
809
    }
810

    
811

    
812
    public DoiWithLabelElement createDoiWithLabelElement(ICdmFormElement parentElement, String labelString,
813
            DOI initialDoi, int style) {
814
        DoiWithLabelElement element = new DoiWithLabelElement(this, parentElement, labelString, initialDoi, null, style);
815
        adapt(element);
816
        parentElement.addElement(element);
817
        return element;
818
    }
819
    public DoiWithLabelElement createDoiWithLabelElement(ICdmFormElement parentElement, String labelString,
820
            DOI initialDoi,Integer textHeight, int style) {
821
        DoiWithLabelElement element = new DoiWithLabelElement(this, parentElement, labelString, initialDoi, textHeight, style);
822
        adapt(element);
823
        parentElement.addElement(element);
824
        return element;
825
    }
826

    
827
    public OrcidWithLabelElement createOrcidWithLabelElement(ICdmFormElement parentElement, String labelString,
828
            ORCID initialDoi, int style) {
829
        OrcidWithLabelElement element = new OrcidWithLabelElement(this, parentElement, labelString, initialDoi, null, style);
830
        adapt(element);
831
        parentElement.addElement(element);
832
        return element;
833
    }
834
    public OrcidWithLabelElement createDoiWithLabelElement(ICdmFormElement parentElement, String labelString,
835
            ORCID initialDoi,Integer textHeight, int style) {
836
        OrcidWithLabelElement element = new OrcidWithLabelElement(this, parentElement, labelString, initialDoi, textHeight, style);
837
        adapt(element);
838
        parentElement.addElement(element);
839
        return element;
840
    }
841

    
842
    /**
843
     * @param element
844
     * @param string
845
     * @param uri
846
     * @param style
847
     * @return
848
     */
849
    public OpenUrlSelectorElement createOpenUrlSelectorElement(ICdmFormElement parentElement, String labelString,
850
            IOpenUrlEnabled openUrlEnabled, int style) {
851
        OpenUrlSelectorElement element = new OpenUrlSelectorElement(this, parentElement, labelString, openUrlEnabled,
852
                style);
853
        adapt(element);
854
        parentElement.addElement(element);
855
        return element;
856
    }
857

    
858
    /**
859
     *
860
     * @param parentElement
861
     * @param labelString
862
     * @param conversationEnabled
863
     * @param user
864
     * @param style
865
     * @return
866
     */
867
    public EditPasswordElement createEditPasswordElement(ICdmFormElement parentElement, String labelString,
868
            ConversationHolder conversation, User user, int style) {
869
        EditPasswordElement element = new EditPasswordElement(this, parentElement, labelString, user, conversation);
870
        adapt(element);
871
        parentElement.addElement(element);
872
        return element;
873
    }
874

    
875
    /**
876
     * <p>
877
     * createIntegerTextWithLabelElement
878
     * </p>
879
     *
880
     * @param parentElement
881
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
882
     *            object.
883
     * @param labelString
884
     *            a {@link java.lang.String} object.
885
     * @param initialInteger
886
     *            a {@link java.lang.Integer} object.
887
     * @param style
888
     *            a int.
889
     * @return a
890
     *         {@link eu.etaxonomy.taxeditor.ui.element.NumberWithLabelElement}
891
     *         object.
892
     */
893
	public FloatWithLabelElement createFloatTextWithLabelElement(
894
			ICdmFormElement parentElement, String labelString,
895
			Number initialNumber, int style) {
896
		FloatWithLabelElement element = new FloatWithLabelElement(this,
897
				parentElement, labelString, initialNumber, style);
898
		adapt(element);
899
		parentElement.addElement(element);
900
		return element;
901
	}
902

    
903
	public BigDecimalWithLabelElement createBigDecimalTextWithLabelElement(
904
            ICdmFormElement parentElement, String labelString,
905
            Number initialNumber, int style) {
906
	    BigDecimalWithLabelElement element = new BigDecimalWithLabelElement(this,
907
                parentElement, labelString, initialNumber, style);
908
        adapt(element);
909
        parentElement.addElement(element);
910
        return element;
911
    }
912

    
913
    public LanguageStringWithLabelElement createLanguageStringWithLabelElement(ICdmFormElement parentElement,
914
            String labelString, LanguageString languageString, int style) {
915
        return createLanguageStringWithLabelElement(parentElement, labelString, languageString, null, false, style);
916
    }
917

    
918
    public LanguageStringWithLabelElement createLanguageStringWithLabelElement(ICdmFormElement parentElement,
919
            String labelString, LanguageString languageString, Integer height, boolean isMultiLine, int style) {
920
        LanguageStringWithLabelElement element = new LanguageStringWithLabelElement(this, parentElement, labelString,
921
                languageString, height, isMultiLine, style);
922
        adapt(element);
923
        parentElement.addElement(element);
924
        return element;
925
    }
926

    
927
    /**
928
     * <p>
929
     * createKeyValueViewerElement
930
     * </p>
931
     *
932
     * @param parentElement
933
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
934
     *            object.
935
     * @param keyHeading
936
     *            a {@link java.lang.String} object.
937
     * @param valueHeading
938
     *            a {@link java.lang.String} object.
939
     * @param map
940
     *            a {@link java.util.Map} object.
941
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.KeyValueViewerElement}
942
     *         object.
943
     */
944
    public KeyValueViewerElement createKeyValueViewerElement(ICdmFormElement parentElement, String keyHeading,
945
            String valueHeading, Map<Object, Object> map) {
946
        KeyValueViewerElement element = new KeyValueViewerElement(this, parentElement, keyHeading, valueHeading, map);
947
        adapt(element);
948
        parentElement.addElement(element);
949
        return element;
950
    }
951

    
952
    /**
953
     * @deprecated Use {@link #createDefinedTermComboElement(TermType, ICdmFormElement, String, DefinedTermBase, int)} instead
954
     */
955
    @Deprecated
956
    public <T extends DefinedTermBase> TermComboElement<T> createTermComboElement(Class<T> termComboType,
957
            ICdmFormElement parentElement, String labelString, T selection, int style) {
958
        TermComboElement<T> element = new TermComboElement<T>(this, parentElement, termComboType, labelString, selection, true, style);
959
        adapt(element);
960
        parentElement.addElement(element);
961
        return element;
962
    }
963

    
964
    public <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElement(
965
            TermType termType,
966
            ICdmFormElement parentElement,
967
            String labelString,
968
            T selection,
969
            int style,
970
            Comparator<T> comparator) {
971
        return this.createDefinedTermComboElement(termType, null, null, parentElement, labelString, selection, true, style, false, comparator);
972
    }
973

    
974
    public <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElement(
975
			TermType termType,
976
			ICdmFormElement parentElement,
977
			String labelString,
978
			T selection,
979
			boolean addEmptyElement,
980
			int style) {
981
        return this.createDefinedTermComboElement(termType, null, null, parentElement, labelString, selection, addEmptyElement, style, false, null);
982
	}
983

    
984
	public <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElement(
985
			TermType termType,
986
			ICdmFormElement parentElement,
987
			String labelString,
988
			T selection,
989
			int style) {
990
		return  this.createDefinedTermComboElement(termType, null, null, parentElement, labelString, selection, true, style, false, null);
991
	}
992
	public <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElementDto(
993
            TermType termType,
994
            ICdmFormElement parentElement,
995
            String labelString,
996
            TermDto selection,
997
            int style) {
998
        return  this.createDefinedTermComboElement(termType, null, null, parentElement, labelString, selection, true, style, false, null);
999
    }
1000

    
1001
	public <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElement(
1002
            List<T> terms,
1003
            ICdmFormElement parentElement,
1004
            String labelString,
1005
            T selection,
1006
            int style) {
1007
        return  this.createDefinedTermComboElement(null, null, terms, parentElement, labelString, selection, true, style, false, null);
1008
    }
1009

    
1010
	public <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElement(
1011
	        List<T> terms,
1012
	        ICdmFormElement parentElement,
1013
	        String labelString,
1014
	        T selection,
1015
	        boolean addEmptyElement,
1016
	        int style) {
1017
	    return  this.createDefinedTermComboElement(null, null, terms, parentElement, labelString, selection, addEmptyElement, style, false, null);
1018
	}
1019

    
1020
    public <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElement(
1021
			TermType termType,
1022
			ICdmFormElement parentElement,
1023
			String labelString,
1024
			T selection,
1025
			boolean addEmptyElement,
1026
			int style,
1027
			boolean useAbbrevLabel) {
1028
		return createDefinedTermComboElement(termType, null, null, parentElement, labelString, selection, addEmptyElement, style, useAbbrevLabel, null);
1029
	}
1030

    
1031

    
1032
    public <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElement(
1033
            TermVocabulary<?> termVocabulary,
1034
            ICdmFormElement parentElement,
1035
            String labelString,
1036
            T selection,
1037
            int style) {
1038
        return this.createDefinedTermComboElement(null, termVocabulary, null, parentElement, labelString, selection, true, style, false, null);
1039
    }
1040

    
1041
	public <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElement(
1042
	        TermVocabulary<?> termVocabulary,
1043
	        ICdmFormElement parentElement,
1044
	        String labelString,
1045
	        T selection,
1046
	        boolean addEmptyElement,
1047
	        int style,
1048
	        boolean useAbbrevLabel) {
1049
	    return createDefinedTermComboElement(null, termVocabulary, null, parentElement, labelString, selection, addEmptyElement, style, useAbbrevLabel, null);
1050
	}
1051

    
1052
	private <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElement(
1053
	        TermType termType,
1054
	        TermVocabulary<?> termVocabulary,
1055
	        List<T> terms,
1056
	        ICdmFormElement parentElement,
1057
	        String labelString,
1058
	        T selection,
1059
	        boolean addEmptyElement,
1060
	        int style,
1061
	        boolean useAbbrevLabel,
1062
	        Comparator<T> comparator) {
1063

    
1064
	    if(termType!=null){
1065
	        TermComboElement<T> element = new TermComboElement<T>(this, parentElement, termType, labelString, selection, addEmptyElement, style, useAbbrevLabel, comparator);
1066
	        adapt(element);
1067
	        parentElement.addElement(element);
1068
	        return element;
1069
	    }
1070
	    else if(termVocabulary!=null){
1071
	        TermComboElement<T> element = new TermComboElement<T>(this, parentElement, termVocabulary, labelString, selection, addEmptyElement, style, useAbbrevLabel, comparator);
1072
	        if (comparator!= null){
1073
	        	element.setTermComparator(comparator);
1074
	        }
1075
	        adapt(element);
1076
	        parentElement.addElement(element);
1077
	        return element;
1078
	    }else if (terms != null){
1079

    
1080
	        TermComboElement<T> element = new TermComboElement<T>(this, parentElement, terms, labelString, selection, addEmptyElement, style, useAbbrevLabel);
1081
            if (comparator!= null){
1082
                element.setTermComparator(comparator);
1083
            }
1084
            adapt(element);
1085
            parentElement.addElement(element);
1086
            return element;
1087
	    }
1088
	    else {
1089
	        //this should never happen
1090
	        return null;
1091
	    }
1092
	}
1093

    
1094
	   private <T extends DefinedTermBase> TermComboElement<T> createDefinedTermComboElement(
1095
	            TermType termType,
1096
	            TermVocabulary<?> termVocabulary,
1097
	            List<T> terms,
1098
	            ICdmFormElement parentElement,
1099
	            String labelString,
1100
	            TermDto selection,
1101
	            boolean addEmptyElement,
1102
	            int style,
1103
	            boolean useAbbrevLabel,
1104
	            Comparator<T> comparator) {
1105
	        if(termType!=null){
1106
	            TermComboElement<T> element = new TermComboElement<T>(this, parentElement, termType, labelString, selection, addEmptyElement, style, useAbbrevLabel, comparator);
1107
	            adapt(element);
1108
	            parentElement.addElement(element);
1109
	            return element;
1110
	        }
1111

    
1112
	        else {
1113
	            //this should never happen
1114
	            return null;
1115
	        }
1116
	    }
1117

    
1118
	public NameRelationshipTypeCombo createNameRelationshipTypeCombo(ICdmFormElement parentElement,
1119
            String labelString,
1120
            int style,
1121
            boolean useAbbrevLabel,
1122
            Comparator<NameRelationshipType> comparator) {
1123

    
1124
        NameRelationshipTypeCombo<InverseTermWrapper> element = new NameRelationshipTypeCombo(this, parentElement, labelString, true, style, useAbbrevLabel, comparator);
1125
        adapt(element);
1126
        parentElement.addElement(element);
1127
        return element;
1128
    }
1129

    
1130
	public MisappliedRelationshipComboElement createMisappliedRelationshipComboElement(
1131
	        ICdmFormElement parentElement,
1132
            String labelString,
1133
            TaxonRelationshipType selection,
1134
            int style) {
1135
	    MisappliedRelationshipComboElement combo = new MisappliedRelationshipComboElement(this, parentElement, labelString, selection, false, style, false);
1136
	    adapt(combo);
1137
        parentElement.addElement(combo);
1138
        return combo;
1139
    }
1140

    
1141
	public <T extends IEnumTerm<T>> EnumComboElement<T> createEnumComboElement(
1142
	        Class<T> enumComboType, ICdmFormElement parentElement,
1143
	        int style, boolean hasNullValue) {
1144
	    return createEnumComboElement(enumComboType, parentElement, null, style, hasNullValue);
1145
	}
1146
	public <T extends IEnumTerm<T>> EnumComboElement<T> createEnumComboElement(
1147
            Class<T> enumComboType, ICdmFormElement parentElement,
1148
            int style) {
1149
        return createEnumComboElement(enumComboType, parentElement, null, style, false);
1150
    }
1151

    
1152
	public <T extends IEnumTerm<T>> EnumComboElement<T> createEnumComboElement(
1153
			Class<T> enumComboType, ICdmFormElement parentElement, Comparator<T> comparator,
1154
			int style, boolean hasNullValue) {
1155
        EnumComboElement<T> element = new EnumComboElement<T>(this, parentElement, enumComboType, comparator, style, hasNullValue);
1156
        adapt(element);
1157
        parentElement.addElement(element);
1158
        return element;
1159
    }
1160

    
1161
	public <TERM extends DefinedTermBase<TERM>, VOC extends TermVocabulary<TERM>> VocabularyComboElement<TERM, VOC> createVocabularyComboElement(
1162
	        TermType termType, String label, VOC selection, ICdmFormElement parentElement, int style) {
1163
	    VocabularyComboElement<TERM, VOC> element = new VocabularyComboElement<TERM, VOC>(this, parentElement, termType, label, selection, style);
1164
	    adapt(element);
1165
	    parentElement.addElement(element);
1166
	    return element;
1167
	}
1168

    
1169
	public <TERM extends DefinedTermBase<TERM>, VOC extends TermVocabulary<TERM>> VocabularyComboElement<TERM, VOC> createVocabularyDtoComboElement(
1170
            TermType termType, String label, TermVocabularyDto selection, ICdmFormElement parentElement, int style) {
1171
        VocabularyComboElement<TERM, VOC> element = new VocabularyComboElement<TERM, VOC>(this, parentElement, termType, label, selection, style);
1172
        adapt(element);
1173
        parentElement.addElement(element);
1174
        return element;
1175
    }
1176

    
1177
    /**
1178
     * <p>
1179
     * createBrowserElement
1180
     * </p>
1181
     *
1182
     * @param imageUri
1183
     *            a {@link eu.etaxonomy.cdm.common.URI} object.
1184
     * @param style
1185
     *            a int.
1186
     * @param parentElement
1187
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1188
     *            object.
1189
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.BrowserElement}
1190
     *         object.
1191
     */
1192
    public BrowserElement createBrowserElement(ICdmFormElement parentElement, URI imageUri, int style) {
1193
        BrowserElement element = new BrowserElement(this, parentElement, imageUri, style);
1194
        adapt(element);
1195
        parentElement.addElement(element);
1196
        return element;
1197
    }
1198

    
1199
    /**
1200
     * <p>
1201
     * createImageElement
1202
     * </p>
1203
     *
1204
     * @param parentElement
1205
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1206
     *            object.
1207
     * @param imageUri
1208
     *            a {@link eu.etaxonomy.cdm.common.URI} object.
1209
     * @param style
1210
     *            a int.
1211
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.ImageElement} object.
1212
     */
1213
    public ImageElement createImageElement(ICdmFormElement parentElement, URI imageUri, int style) {
1214
        ImageElement element = new ImageElement(this, parentElement, imageUri, style);
1215
        adapt(element);
1216
        parentElement.addElement(element);
1217
        return element;
1218
    }
1219

    
1220
    /**
1221
     * <p>
1222
     * createTextActionElement
1223
     * </p>
1224
     *
1225
     * @param labelString
1226
     *            a {@link java.lang.String} object.
1227
     * @param initialText
1228
     *            a {@link java.lang.String} object.
1229
     * @param style
1230
     *            a int.
1231
     * @param parentElement
1232
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1233
     *            object.
1234
     * @param buttonLabel
1235
     *            a {@link java.lang.String} object.
1236
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.TextActionElement}
1237
     *         object.
1238
     */
1239
    public TextActionElement createTextActionElement(ICdmFormElement parentElement, String labelString,
1240
            String buttonLabel, String initialText, int style) {
1241
        TextActionElement element = new TextActionElement(this, parentElement, labelString, buttonLabel, initialText,
1242
                style);
1243
        adapt(element);
1244
        parentElement.addElement(element);
1245
        return element;
1246
    }
1247

    
1248
    /**
1249
     * <p>
1250
     * createCheckbox
1251
     * </p>
1252
     *
1253
     * @param parentElement
1254
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1255
     *            object.
1256
     * @param label
1257
     *            a {@link java.lang.String} object.
1258
     * @param initialState
1259
     *            a boolean.
1260
     * @param style
1261
     *            a int.
1262
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.CheckboxElement}
1263
     *         object.
1264
     */
1265
    public CheckboxElement createCheckbox(ICdmFormElement parentElement, String label, Boolean initialState, int style) {
1266
        if(initialState==null){
1267
            initialState = Boolean.FALSE;
1268
        }
1269
        CheckboxElement element = new CheckboxElement(this, parentElement, label, initialState, style | orientation);
1270
        adapt(element);
1271
        parentElement.addElement(element);
1272
        return element;
1273
    }
1274

    
1275
    /**
1276
     * Creates a section as a part of the form.
1277
     *
1278
     * @return the section widget
1279
     */
1280
    public Section adapt(AbstractFormSection section) {
1281
        section.setMenu(section.getLayoutComposite().getMenu());
1282
        adapt(section, true, true);
1283

    
1284
        // handle focus and property change events for cdm use
1285
        section.addFocusListener(selectionFocusHandler);
1286
        section.setPropertyChangeListeners(propertyChangeListeners);
1287

    
1288
        section.addExpansionListener(new ExpansionAdapter(){
1289
            @Override
1290
            public void expansionStateChanged(ExpansionEvent e) {
1291
                super.expansionStateChanged(e);
1292
                if(section.getEntity()!=null){
1293
                    PreferencesUtil.setStringValue(StoreUtil.getPrefKey(section.getClass(), section.getEntity().getClass().getCanonicalName()), e.getState()?CdmSectionPart.EXPANDED:CdmSectionPart.COLLAPSED);
1294
                }
1295
            }
1296
        });
1297

    
1298
        if (section.getToggle() != null) {
1299
            section.getToggle().setHoverDecorationColor(getColors().getColor(IFormColors.TB_TOGGLE_HOVER));
1300
            section.getToggle().setDecorationColor(getColors().getColor(IFormColors.TB_TOGGLE));
1301
        }
1302

    
1303
        section.setFont(boldFontHolder2.getBoldFont(section.getLayoutComposite().getFont()));
1304

    
1305
        if ((section.getStyle() & ExpandableComposite.TITLE_BAR) != 0
1306
                || (section.getStyle() & ExpandableComposite.SHORT_TITLE_BAR) != 0) {
1307
            getColors().initializeSectionToolBarColors();
1308
            section.setTitleBarBackground(getColors().getColor(IFormColors.TB_BG));
1309
            section.setTitleBarBorderColor(getColors().getColor(IFormColors.TB_BORDER));
1310
        }
1311
        // call setTitleBarForeground regardless as it also sets the label color
1312
        section.setTitleBarForeground(getColors().getColor(IFormColors.TB_TOGGLE));
1313
        return section;
1314
    }
1315

    
1316
    private class BoldFontHolder2 {
1317
        private Font normalFont;
1318

    
1319
        private Font boldFont;
1320

    
1321
        public BoldFontHolder2() {
1322
        }
1323

    
1324
        public Font getBoldFont(Font font) {
1325
            createBoldFont(font);
1326
            return boldFont;
1327
        }
1328

    
1329
        private void createBoldFont(Font font) {
1330
            if (normalFont == null || !normalFont.equals(font)) {
1331
                normalFont = font;
1332
                dispose();
1333
            }
1334
            if (boldFont == null) {
1335
                boldFont = FormFonts.getInstance().getBoldFont(getColors().getDisplay(), normalFont);
1336
            }
1337
        }
1338

    
1339
        public void dispose() {
1340
            if (boldFont != null) {
1341
                FormFonts.getInstance().markFinished(boldFont, getColors().getDisplay());
1342
                boldFont = null;
1343
            }
1344
        }
1345
    }
1346

    
1347
    /**
1348
     * createToggleableTextField with relevance
1349
     */
1350
    public ToggleableTextElement createToggleableTextField(ICdmFormElement parentElement, String labelString,
1351
            String initialText, boolean initialState, CacheRelevance relevance, int style) {
1352

    
1353
        ToggleableTextElement element = new ToggleableTextElement(this, parentElement, labelString, initialText,
1354
                initialState, relevance, style | orientation);
1355
        adapt(element);
1356
        parentElement.addElement(element);
1357
        return element;
1358
    }
1359

    
1360
    /**
1361
     * like {@link #createToggleableTextField(ICdmFormElement, String, String, boolean, CacheRelevance, int)}
1362
     * but with predefined cache relevance == 1
1363
     */
1364
    public ToggleableTextElement createToggleableTextField(ICdmFormElement parentElement, String labelString,
1365
            String initialText, boolean initialState, int style) {
1366
        return createToggleableTextField(parentElement, labelString, initialText, initialState, CacheRelevance.CACHE1, style);
1367
    }
1368

    
1369
    /**
1370
     * like {@link #createToggleableTextField(ICdmFormElement, String, String, boolean, CacheRelevance, int)}
1371
     * but with predefined cache relevance == 1
1372
     */
1373
    public RemovableTextElement createRemovableTextField(ICdmFormElement parentElement, String labelString,
1374
            String initialText, int style) {
1375
        RemovableTextElement element = new RemovableTextElement(this, parentElement, labelString, initialText,
1376
                style | orientation);
1377

    
1378
        adapt(element);
1379
        parentElement.addElement(element);
1380
        return element;
1381
    }
1382

    
1383

    
1384
    /**
1385
     * createTimePeriodElement
1386
     */
1387
    public TimePeriodElement createTimePeriodElement(ICdmFormElement parentElement, String labelString,
1388
            TimePeriod timePeriod, int style) {
1389
        TimePeriodElement element = new TimePeriodElement(this, parentElement, labelString, timePeriod, style);
1390
        adapt(element);
1391
        parentElement.addElement(element);
1392
        return element;
1393
    }
1394

    
1395
    /**
1396
     * createVerbatimTimePeriodElement
1397
     */
1398
    public VerbatimTimePeriodElement createVerbatimTimePeriodElement(ICdmFormElement parentElement, String labelString,
1399
            VerbatimTimePeriod timePeriod, int style) {
1400
        VerbatimTimePeriodElement element = new VerbatimTimePeriodElement(this, parentElement, labelString, timePeriod, style);
1401
        adapt(element);
1402
        parentElement.addElement(element);
1403
        return element;
1404
    }
1405

    
1406
	/**
1407
	 * createGatheringEventUnitElement
1408
	 */
1409
	public GatheringEventUnitElement createGatheringEventUnitElement(
1410
			ICdmFormElement parentElement,
1411
			String labelString,
1412
			DerivedUnitFacade gatheringEvent,
1413
			MinMaxTextSection.UnitType unitType,
1414
			int style) {
1415
		GatheringEventUnitElement element = new GatheringEventUnitElement(this,
1416
				parentElement,
1417
				labelString,
1418
				gatheringEvent,
1419
				unitType,
1420
				style);
1421
		adapt(element);
1422
		parentElement.addElement(element);
1423
		return element;
1424
	}
1425

    
1426
    /**
1427
     * createPointElement
1428
     */
1429
    public PointElement createPointElement(ICdmFormElement parentElement, Point point, int style) {
1430
        PointElement element = new PointElement(this, parentElement, point, style);
1431
        adapt(element);
1432
        parentElement.addElement(element);
1433
        return element;
1434
    }
1435

    
1436
    /**
1437
     * Creates an empty section with the given message.<br>
1438
     * If message is <code>null</code> a default message will be displayed.
1439
     */
1440
    public EmptySection createEmptySection(String message, CdmFormFactory formFactory, ICdmFormElement parentElement, int style) {
1441
        EmptySection section = new EmptySection(message, formFactory, parentElement, style);
1442
        parentElement.addElement(section);
1443
        adapt(section);
1444
        return section;
1445
    }
1446

    
1447
    /**
1448
     * <p>
1449
     * createDateDetailSection
1450
     * </p>
1451
     *
1452
     * @param parentElement
1453
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1454
     *            object.
1455
     * @param style
1456
     *            a int.
1457
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.DateDetailSection}
1458
     *         object.
1459
     */
1460
    public DateDetailSection<TimePeriod> createDateDetailSection(ICdmFormElement parentElement, int style) {
1461
        DateDetailSection<TimePeriod> section = new DateDetailSection<TimePeriod>(this, parentElement, false, style);
1462
        parentElement.addElement(section);
1463
        adapt(section);
1464
        return section;
1465
    }
1466

    
1467
    /**
1468
     * <p>
1469
     * createVerbatimDateDetailSection
1470
     * </p>
1471
     *
1472
     * @param parentElement
1473
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1474
     *            object.
1475
     * @param style
1476
     *            a int.
1477
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.VerbatimDateDetailSection}
1478
     *         object.
1479
     */
1480
    public DateDetailSection<VerbatimTimePeriod> createVerbatimDateDetailSection(ICdmFormElement parentElement, int style) {
1481
        DateDetailSection<VerbatimTimePeriod> section
1482
        	= new DateDetailSection<VerbatimTimePeriod>(this, parentElement, true, style);
1483
        parentElement.addElement(section);
1484
        adapt(section);
1485
        return section;
1486
    }
1487

    
1488
	/**
1489
	 * <p>
1490
	 * createDateDetailSection
1491
	 * </p>
1492
	 *
1493
	 * @param parentElement
1494
	 *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1495
	 *            object.
1496
	 * @param style
1497
	 *            a int.
1498
	 * @return a {@link eu.etaxonomy.taxeditor.ui.element.MinMaxTextSection}
1499
	 *         object.
1500
	 */
1501
	public MinMaxTextSection createMinMaxTextSection(ICdmFormElement parentElement, UnitType unitType, int style) {
1502
		MinMaxTextSection section = new MinMaxTextSection(this, parentElement, unitType, style);
1503
		parentElement.addElement(section);
1504
		adapt(section);
1505
		return section;
1506
	}
1507

    
1508
    /**
1509
     * <p>
1510
     * createPartialElement
1511
     * </p>
1512
     *
1513
     * @param parentElement
1514
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1515
     *            object.
1516
     * @param labelString
1517
     *            a {@link java.lang.String} object.
1518
     * @param partial
1519
     *            a {@link org.joda.time.Partial} object.
1520
     * @param style
1521
     *            a int.
1522
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.PartialElement}
1523
     *         object.
1524
     */
1525
    public PartialElement createPartialElement(ICdmFormElement parentElement, String labelString, Partial partial,
1526
            int style) {
1527
        PartialElement element = new PartialElement(this, parentElement, labelString, style);
1528
        adapt(element);
1529
        parentElement.addElement(element);
1530
        return element;
1531
    }
1532

    
1533
    public PartialElement createPartialElement(ICdmFormElement parentElement, String labelString, Partial partial, boolean showYear,
1534
            int style) {
1535
        PartialElement element = new PartialElement(this, parentElement, labelString, style, showYear);
1536
        adapt(element);
1537
        parentElement.addElement(element);
1538
        return element;
1539
    }
1540

    
1541
    /**
1542
     * <p>
1543
     * addSelectionListener
1544
     * </p>
1545
     *
1546
     * @param listener
1547
     *            a {@link org.eclipse.swt.events.SelectionListener} object.
1548
     */
1549
    public void addSelectionListener(SelectionListener listener) {
1550
        selectionListenerList.add(listener);
1551
    }
1552

    
1553
    /**
1554
     * <p>
1555
     * removeSelectionListener
1556
     * </p>
1557
     *
1558
     * @param listener
1559
     *            a {@link org.eclipse.swt.events.SelectionListener} object.
1560
     */
1561
    public void removeSelectionListener(SelectionListener listener) {
1562
        if (listener == null) {
1563
            MessagingUtils.error(this.getClass(),
1564
                    "Tried to remove a selection listener from this factories listeners but was null", null);
1565
        } else {
1566
            selectionListenerList.remove(listener);
1567
        }
1568
    }
1569

    
1570
    /**
1571
     * <p>
1572
     * addPropertyChangeListener
1573
     * </p>
1574
     *
1575
     * @param listener
1576
     *            a {@link org.eclipse.jface.util.IPropertyChangeListener}
1577
     *            object.
1578
     */
1579
    public void addPropertyChangeListener(IPropertyChangeListener listener) {
1580
        if (propertyChangeListeners.contains(listener)) {
1581
            return;
1582
        }
1583
        propertyChangeListeners.add(0, listener);
1584
    }
1585

    
1586
    /**
1587
     * <p>
1588
     * removePropertyChangeListener
1589
     * </p>
1590
     *
1591
     * @param listener
1592
     *            a {@link org.eclipse.jface.util.IPropertyChangeListener}
1593
     *            object.
1594
     */
1595
    public void removePropertyChangeListener(IPropertyChangeListener listener) {
1596
        propertyChangeListeners.remove(listener);
1597
    }
1598

    
1599
    /**
1600
     * @return the propertyChangeListeners
1601
     */
1602
    public List<IPropertyChangeListener> getPropertyChangeListeners() {
1603
        return propertyChangeListeners;
1604
    }
1605

    
1606
    /**
1607
     * <p>
1608
     * createHorizontalSeparator
1609
     * </p>
1610
     *
1611
     * @param parentElement
1612
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1613
     *            object.
1614
     * @param style
1615
     *            a int.
1616
     * @return a {@link org.eclipse.swt.widgets.Label} object.
1617
     */
1618
    public Label createHorizontalSeparator(ICdmFormElement parentElement, int style) {
1619
        Label separator = this.createSeparator(parentElement.getLayoutComposite(), SWT.HORIZONTAL | style);
1620
        separator.setLayoutData(LayoutConstants.FILL_HORIZONTALLY());
1621
        return separator;
1622
    }
1623

    
1624
    /**
1625
     * <p>
1626
     * createVersionElement
1627
     * </p>
1628
     *
1629
     * @param parentElement
1630
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1631
     *            object.
1632
     * @param entity
1633
     *            a {@link eu.etaxonomy.cdm.model.common.VersionableEntity}
1634
     *            object.
1635
     * @param style
1636
     *            a int.
1637
     * @return a
1638
     *         {@link eu.etaxonomy.taxeditor.ui.section.supplemental.VersionElement}
1639
     *         object.
1640
     */
1641
    public VersionElement createVersionElement(ICdmFormElement parentElement, VersionableEntity entity, int style) {
1642
        VersionElement element = new VersionElement(this, parentElement, entity, style);
1643
        adapt(element);
1644
        parentElement.addElement(element);
1645
        return element;
1646
    }
1647

    
1648
    /**
1649
     * @param cdmBaseSection
1650
     * @param object
1651
     * @param style
1652
     * @return
1653
     */
1654
    public CdmBaseElement createCdmBaseElement(ICdmFormElement parentElement, CdmBase entity, int style) {
1655
        CdmBaseElement element = new CdmBaseElement(this, parentElement, entity, style);
1656
        adapt(element);
1657
        parentElement.addElement(element);
1658
        return element;
1659
    }
1660

    
1661
    /**
1662
     * <p>
1663
     * createVersionSection
1664
     * </p>
1665
     *
1666
     * @param parentElement
1667
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1668
     *            object.
1669
     * @param style
1670
     *            a int.
1671
     * @return a
1672
     *         {@link eu.etaxonomy.taxeditor.ui.section.supplemental.VersionSection}
1673
     *         object.
1674
     */
1675
    public VersionSection createVersionSection(ICdmFormElement parentElement, int style) {
1676
        VersionSection section = new VersionSection(this, parentElement, style);
1677
        parentElement.addElement(section);
1678
        adapt(section);
1679
        return section;
1680
    }
1681

    
1682
    /**
1683
     * @param parent
1684
     * @param i
1685
     * @return
1686
     */
1687
    public CdmBaseSection createCdmBaseSection(ICdmFormElement parentElement, int style) {
1688
        CdmBaseSection section = new CdmBaseSection(this, parentElement, style);
1689
        parentElement.addElement(section);
1690
        adapt(section);
1691
        return section;
1692
    }
1693

    
1694
    /**
1695
     * <p>
1696
     * createEmptyElement
1697
     * </p>
1698
     *
1699
     * @param parentElement
1700
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1701
     *            object.
1702
     * @return a {@link eu.etaxonomy.taxeditor.ui.section.EmptyElement} object.
1703
     */
1704
    public EmptyElement createEmptyElement(ICdmFormElement parentElement, String emptyText) {
1705
        EmptyElement element = new EmptyElement(this, parentElement, emptyText, SWT.NULL);
1706
        adapt(element);
1707
        parentElement.addElement(element);
1708
        return element;
1709
    }
1710

    
1711
    /**
1712
     * <p>
1713
     * createHeadlineSection
1714
     * </p>
1715
     *
1716
     * @param parentElement
1717
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1718
     *            object.
1719
     * @return a
1720
     *         {@link eu.etaxonomy.taxeditor.ui.section.supplemental.HeadlineSection}
1721
     *         object.
1722
     */
1723
    public HeadlineSection createHeadlineSection(ICdmFormElement parentElement) {
1724
        HeadlineSection section = new HeadlineSection(this, parentElement, SWT.NULL);
1725
        parentElement.addElement(section);
1726
        adapt(section);
1727
        return section;
1728
    }
1729

    
1730
    /**
1731
     * <p>
1732
     * createParsingMessageElement
1733
     * </p>
1734
     *
1735
     * @param parentElement
1736
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
1737
     *            object.
1738
     * @param parserProblem
1739
     *            a {@link eu.etaxonomy.cdm.strategy.parser.ParserProblem}
1740
     *            object.
1741
     * @param style
1742
     *            a int.
1743
     * @return a
1744
     *         {@link eu.etaxonomy.taxeditor.ui.section.taxon.ParsingMessageElement}
1745
     *         object.
1746
     */
1747
    public ParsingMessageElement createParsingMessageElement(ICdmFormElement parentElement,
1748
            ParserProblem parserProblem, int style) {
1749
        ParsingMessageElement element = new ParsingMessageElement(this, parentElement, parserProblem, style);
1750
        adapt(element);
1751
        parentElement.addElement(element);
1752
        return element;
1753
    }
1754

    
1755
    public DefinedTermDetailSection createDefinedTermDetailSection(Class definedTermClass, ConversationHolder conversation,
1756
            ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style) {
1757

    
1758
        DefinedTermDetailSection section = new DefinedTermDetailSection(this, definedTermClass, conversation, parentElement,
1759
                selectionProvider, style);
1760

    
1761
        parentElement.addElement(section);
1762
        adapt(section);
1763
        return section;
1764

    
1765
    }
1766

    
1767
    public TermMediaSection createTermMediaSection(ConversationHolder conversation,
1768
            ICdmFormElement parentElement, int style) {
1769
        TermMediaSection section = new TermMediaSection(this, conversation, parentElement, style);
1770
        parentElement.addElement(section);
1771
        adapt(section);
1772
        return section;
1773

    
1774
    }
1775

    
1776
    public DerivedUnitMediaSection createDerivedUnitMediaSection(ConversationHolder conversation,
1777
            ICdmFormElement parentElement, int style) {
1778
        DerivedUnitMediaSection section = new DerivedUnitMediaSection(this, conversation, parentElement, style);
1779
        parentElement.addElement(section);
1780
        adapt(section);
1781
        return section;
1782

    
1783
    }
1784

    
1785
    /**
1786
     * @param definedTermClass
1787
     * @param formElement
1788
     * @param style
1789
     * @return
1790
     */
1791
    public AbstractCdmDetailElement createDefinedTermDetailElement(Class definedTermClass,
1792
            AbstractCdmDetailSection parentElement, int style) {
1793
        AbstractCdmDetailElement element = null;
1794

    
1795
        if (NamedArea.class.isAssignableFrom(definedTermClass)) {
1796
            element = new eu.etaxonomy.taxeditor.ui.section.vocabulary.NamedAreaDetailElement(this, parentElement);
1797
        } else if (definedTermClass.equals(Feature.class)) {
1798
            element = new FeatureDetailElement(this, parentElement);
1799
        } else if(definedTermClass.equals(PresenceAbsenceTerm.class)){
1800
            element = new PresenceAbsenceTermDetailElement(this, parentElement);
1801
        } else {
1802
            element = new DefinedTermDetailElement(this, parentElement);
1803
        }
1804

    
1805

    
1806
        adapt(element);
1807
        parentElement.addElement(element);
1808
        return element;
1809
    }
1810

    
1811
    public CharacterNodeDetailSection createCharacterNodeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1812
        CharacterNodeDetailSection section = new CharacterNodeDetailSection(this, conversation, parentElement, selectionProvider, style);
1813
        addAndAdaptSection(parentElement, section);
1814
        return section;
1815
    }
1816

    
1817
    public CharacterNodeDtoDetailSection createCharacterNodeDtoDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1818
        CharacterNodeDtoDetailSection section = new CharacterNodeDtoDetailSection(this, conversation, parentElement, selectionProvider, style);
1819
        addAndAdaptSection(parentElement, section);
1820
        return section;
1821
    }
1822

    
1823
    public CharacterDetailSection createCharacterDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1824
        CharacterDetailSection section = new CharacterDetailSection(this, conversation, parentElement, selectionProvider, style);
1825
        addAndAdaptSection(parentElement, section);
1826
        return section;
1827
    }
1828

    
1829
    public CharacterDtoDetailSection createCharacterDtoDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1830
        CharacterDtoDetailSection section = new CharacterDtoDetailSection(this, conversation, parentElement, selectionProvider, style);
1831
        addAndAdaptSection(parentElement, section);
1832
        return section;
1833
    }
1834

    
1835
    public CharacterNodeDetailElement createCharacterNodeDetailElement(ICdmFormElement parentElement, int style){
1836
        CharacterNodeDetailElement element = new CharacterNodeDetailElement(this, parentElement);
1837
        addAndAdaptElement(parentElement, element);
1838
        return element;
1839
    }
1840
    public CharacterNodeDtoDetailElement createCharacterNodeDtoDetailElement(ICdmFormElement parentElement, int style){
1841
        CharacterNodeDtoDetailElement element = new CharacterNodeDtoDetailElement(this, parentElement);
1842
        addAndAdaptElement(parentElement, element);
1843
        return element;
1844
    }
1845

    
1846
    public CharacterDetailElement createCharacterDetailElement(ICdmFormElement parentElement, int style){
1847
        CharacterDetailElement element = new CharacterDetailElement(this, parentElement);
1848
        addAndAdaptElement(parentElement, element);
1849
        return element;
1850
    }
1851
    public CharacterDtoDetailElement createCharacterDtoDetailElement(ICdmFormElement parentElement, int style){
1852
        CharacterDtoDetailElement element = new CharacterDtoDetailElement(this, parentElement);
1853
        addAndAdaptElement(parentElement, element);
1854
        return element;
1855
    }
1856

    
1857
    public TermTreeDetailElement createFeatureTreeDetailElement(ICdmFormElement parentElement, int style){
1858
        TermTreeDetailElement element = new TermTreeDetailElement(this, parentElement);
1859
        addAndAdaptElement(parentElement, element);
1860
        return element;
1861
    }
1862

    
1863
    /**
1864
     * @param parentElement
1865
     * @param style
1866
     * @return
1867
     */
1868
    public AbstractCdmDetailElement<TermTree> createFeatureTreeDetailElementForTree(
1869
            AbstractCdmDetailSection<TermTree> parentElement, int style) {
1870
        TermTreeDetailElementForNode element = new TermTreeDetailElementForNode(this, parentElement);
1871
        addAndAdaptElement(parentElement, element);
1872
        return element;
1873
    }
1874

    
1875
    public TermNodeDetailElement createFeatureNodeDetailElement(ICdmFormElement parentElement, int style){
1876
        TermNodeDetailElement element = new TermNodeDetailElement(this, parentElement);
1877
        addAndAdaptElement(parentElement, element);
1878
        return element;
1879
    }
1880

    
1881

    
1882
    //--------DetailSections---------
1883
    public NameDetailSection createNameDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1884
        NameDetailSection section = new NameDetailSection(this, conversation, parentElement, selectionProvider, style);
1885
        addAndAdaptSection(parentElement, section);
1886
        return section;
1887
    }
1888

    
1889
    public TermNodeDetailSection createFeatureNodeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1890
        TermNodeDetailSection section = new TermNodeDetailSection(this, conversation, parentElement, selectionProvider, style);
1891
        addAndAdaptSection(parentElement, section);
1892
        return section;
1893
    }
1894

    
1895
    public TermTreeDetailSection createFeatureTreeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1896
        TermTreeDetailSection section = new TermTreeDetailSection(this, conversation, parentElement, selectionProvider, style);
1897
        addAndAdaptSection(parentElement, section);
1898
        return section;
1899
    }
1900
    public TermTreeDetailSectionForNode createFeatureTreeDetailSectionForTree(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1901
        TermTreeDetailSectionForNode section = new TermTreeDetailSectionForNode(this, conversation, parentElement, selectionProvider, style);
1902
        addAndAdaptSection(parentElement, section);
1903
        return section;
1904
    }
1905

    
1906
    public ReferenceDetailSection createReferenceDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1907
        ReferenceDetailSection section = new ReferenceDetailSection(this, conversation, parentElement, selectionProvider, style);
1908
        addAndAdaptSection(parentElement, section);
1909
        return section;
1910
    }
1911

    
1912
    public NomenclaturalReferenceDetailSection createNomenclaturalReferenceDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1913
        NomenclaturalReferenceDetailSection section = new NomenclaturalReferenceDetailSection(this, conversation, parentElement, selectionProvider, style);
1914
        addAndAdaptSection(parentElement, section);
1915
        return section;
1916
    }
1917

    
1918
    public OriginalSourceAdvancedSection createOriginalSourceAdvancedSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1919
        OriginalSourceAdvancedSection section = new OriginalSourceAdvancedSection(this, conversation, parentElement, selectionProvider, style);
1920
        addAndAdaptSection(parentElement, section);
1921
        return section;
1922
    }
1923

    
1924
    public AdvancedSourceElement createAdvancedSourceDetailElement(ICdmFormElement parentElement, int style){
1925
        AdvancedSourceElement element = new AdvancedSourceElement(this, parentElement);
1926
        addAndAdaptElement(parentElement, element);
1927
        return element;
1928
    }
1929

    
1930
    public AdvancedSourceElement createAdvancedNomenclaturalSourceDetailElement(ICdmFormElement parentElement, int style){
1931
        AdvancedNomenclaturalSourceElement element = new AdvancedNomenclaturalSourceElement(this, parentElement);
1932
        addAndAdaptElement(parentElement, element);
1933
        return element;
1934
    }
1935

    
1936
    public SingleSourceSection createSingleSourceSection(ConversationHolder conversation, ICdmFormElement parentElement, CdmBase cdmEntity, ISelectionProvider selectionProvider, String label, int style){
1937
        SingleSourceSection section = new SingleSourceSection(this, conversation, parentElement, cdmEntity, selectionProvider, style, label);
1938
        addAndAdaptSection(parentElement, section);
1939
        return section;
1940
    }
1941

    
1942
    public TaxonBaseDetailSection createTaxonBaseDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1943
        TaxonBaseDetailSection section = new TaxonBaseDetailSection(this, conversation, parentElement, selectionProvider, style);
1944
        addAndAdaptSection(parentElement, section);
1945
        return section;
1946
    }
1947

    
1948
    public AuthorshipDetailSection createAuthorshipDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1949
        AuthorshipDetailSection section = new AuthorshipDetailSection(this, conversation, parentElement, selectionProvider, style);
1950
        addAndAdaptSection(parentElement, section);
1951
        return section;
1952
    }
1953

    
1954
    public TeamOrPersonBaseDetailSection createTeamOrPersonBaseDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1955
        TeamOrPersonBaseDetailSection section = new TeamOrPersonBaseDetailSection(this, conversation, parentElement, selectionProvider, style);
1956
        addAndAdaptSection(parentElement, section);
1957
        return section;
1958
    }
1959

    
1960
    public TeamDetailSection createTeamDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
1961
        TeamDetailSection section = new TeamDetailSection(this, conversation, parentElement, null, style);
1962
        addAndAdaptSection(parentElement, section);
1963
        return section;
1964
    }
1965

    
1966
    public PersonDetailSection createPersonDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
1967
        PersonDetailSection section = new PersonDetailSection(this, conversation, parentElement, null, style);
1968
        addAndAdaptSection(parentElement, section);
1969
        return section;
1970
    }
1971

    
1972
    public DescriptionDetailSection createDescriptionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1973
        DescriptionDetailSection section = new DescriptionDetailSection(this, conversation, parentElement, selectionProvider, style);
1974
        addAndAdaptSection(parentElement, section);
1975
        return section;
1976
    }
1977

    
1978
    public DescriptionElementDetailSection createDescriptionElementDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1979
        DescriptionElementDetailSection section = new DescriptionElementDetailSection(this, conversation, parentElement, selectionProvider, style);
1980
        addAndAdaptSection(parentElement, section);
1981
        return section;
1982
    }
1983

    
1984
    public ParsingMessagesSection createParsingMessagesSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1985
        ParsingMessagesSection section = new ParsingMessagesSection(this, conversation, parentElement, selectionProvider, style);
1986
        addAndAdaptSection(parentElement, section);
1987
        return section;
1988
    }
1989

    
1990

    
1991

    
1992
    public NonViralNameDetailSection createNonViralNameDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, boolean nameChoosable, int style){
1993
        NonViralNameDetailSection section = new NonViralNameDetailSection(this, conversation, parentElement, selectionProvider, nameChoosable, style);
1994
        addAndAdaptSection(parentElement, section);
1995
        return section;
1996
    }
1997

    
1998
    public MediaDetailsSection createMediaDetailsSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1999
        MediaDetailsSection section = new MediaDetailsSection(this, conversation, parentElement, selectionProvider, style);
2000
        addAndAdaptSection(parentElement, section);
2001
        return section;
2002
    }
2003

    
2004
    public FieldUnitDetailSection createFieldUnitDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2005
        FieldUnitDetailSection section = new FieldUnitDetailSection(this, conversation, parentElement, selectionProvider, style);
2006
        addAndAdaptSection(parentElement, section);
2007
        return section;
2008
    }
2009

    
2010
    public GatheringEventDetailSection createGatheringEventDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2011
        GatheringEventDetailSection section = new GatheringEventDetailSection(this, conversation, parentElement, selectionProvider, style);
2012
        addAndAdaptSection(parentElement, section);
2013
        return section;
2014
    }
2015

    
2016
    public DerivedUnitBaseDetailSection createDerivedUnitBaseDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2017
        DerivedUnitBaseDetailSection section = new DerivedUnitBaseDetailSection(this, conversation, parentElement, selectionProvider, style);
2018
        addAndAdaptSection(parentElement, section);
2019
        return section;
2020
    }
2021

    
2022
    public DerivedUnitTypeDesignationSection createDerivedUnitTypeDesignationSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2023
        DerivedUnitTypeDesignationSection section = new DerivedUnitTypeDesignationSection(this, conversation, parentElement, style);
2024
        addAndAdaptSection(parentElement, section);
2025
        return section;
2026
    }
2027

    
2028
    public TaxonAssociationDetailSection createTaxonAssociationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2029
        TaxonAssociationDetailSection section = new TaxonAssociationDetailSection(this, conversation, parentElement, selectionProvider, style);
2030
        addAndAdaptSection(parentElement, section);
2031
        return section;
2032
    }
2033

    
2034
    public OriginalLabelDataSection createOriginalLabelDataSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2035
        OriginalLabelDataSection section = new OriginalLabelDataSection(this, conversation, parentElement, selectionProvider, style);
2036
        addAndAdaptSection(parentElement, section);
2037
        return section;
2038
    }
2039

    
2040
    public NaturalLanguageSection createNaturalLanguageSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2041
        NaturalLanguageSection section = new NaturalLanguageSection(this, conversation, parentElement, selectionProvider, style);
2042
        addAndAdaptSection(parentElement, section);
2043
        return section;
2044
    }
2045

    
2046
    public FeatureDistributionDetailSection createFeatureDistributionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2047
        FeatureDistributionDetailSection section = new FeatureDistributionDetailSection(this, conversation, parentElement, selectionProvider, style);
2048
        addAndAdaptSection(parentElement, section);
2049
        return section;
2050
    }
2051

    
2052
    public ClassificationDetailSection createClassificationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2053
        ClassificationDetailSection section = new ClassificationDetailSection(this, conversation, parentElement, selectionProvider, style);
2054
        addAndAdaptSection(parentElement, section);
2055
        return section;
2056
    }
2057

    
2058
    public TaxonNodeDetailSection createTaxonNodeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2059
        TaxonNodeDetailSection section = new TaxonNodeDetailSection(this, conversation, parentElement, selectionProvider, style);
2060
        addAndAdaptSection(parentElement, section);
2061
        return section;
2062
    }
2063

    
2064
    public PolytomousKeyDetailSection createPolytomousKeyDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2065
        PolytomousKeyDetailSection section = new PolytomousKeyDetailSection(this, conversation, parentElement, selectionProvider, style);
2066
        addAndAdaptSection(parentElement, section);
2067
        return section;
2068
    }
2069

    
2070
    public PolytomousKeyNodeDetailSection createPolytomousKeyNodeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2071
        PolytomousKeyNodeDetailSection section = new PolytomousKeyNodeDetailSection(this, conversation, parentElement, selectionProvider, style);
2072
        addAndAdaptSection(parentElement, section);
2073
        return section;
2074
    }
2075

    
2076
    public InstitutionDetailSection createInstitutionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2077
        InstitutionDetailSection section = new InstitutionDetailSection(this, conversation, parentElement, selectionProvider, style);
2078
        addAndAdaptSection(parentElement, section);
2079
        return section;
2080
    }
2081

    
2082
    public FieldUnitGeneralDetailSection createFieldUnitGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2083
        FieldUnitGeneralDetailSection section = new FieldUnitGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2084
        addAndAdaptSection(parentElement, section);
2085
        return section;
2086
    }
2087

    
2088
    public DerivedUnitGeneralDetailSection createDerivedUnitGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2089
        DerivedUnitGeneralDetailSection section = new DerivedUnitGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2090
        addAndAdaptSection(parentElement, section);
2091
        return section;
2092
    }
2093

    
2094
    public PreservedSpecimenGeneralDetailSection createPreservedSpecimenGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2095
        PreservedSpecimenGeneralDetailSection section = new PreservedSpecimenGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2096
        addAndAdaptSection(parentElement, section);
2097
        return section;
2098
    }
2099

    
2100
    public TissueSampleGeneralDetailSection createTissueSampleGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2101
        TissueSampleGeneralDetailSection section = new TissueSampleGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2102
        addAndAdaptSection(parentElement, section);
2103
        return section;
2104
    }
2105

    
2106
    public DnaSampleGeneralDetailSection createDnaSampleGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2107
        DnaSampleGeneralDetailSection section = new DnaSampleGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2108
        addAndAdaptSection(parentElement, section);
2109
        return section;
2110
    }
2111

    
2112
    public DnaSamplePreparationPreservationSection createDnaSamplePreparationPreservationSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2113
        DnaSamplePreparationPreservationSection section = new DnaSamplePreparationPreservationSection(this, conversation, parentElement, selectionProvider, style);
2114
        addAndAdaptSection(parentElement, section);
2115
        return section;
2116
    }
2117

    
2118
    public DnaQualityDetailSection createDnaQualityDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2119
        DnaQualityDetailSection section = new DnaQualityDetailSection(this, conversation, parentElement, selectionProvider, style);
2120
        addAndAdaptSection(parentElement, section);
2121
        return section;
2122
    }
2123

    
2124
    public SequenceGeneralDetailSection createSequenceGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2125
        SequenceGeneralDetailSection section = new SequenceGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2126
        addAndAdaptSection(parentElement, section);
2127
        return section;
2128
    }
2129

    
2130
    public SequenceContigFileCollectionDetailSection createSequenceContigFileCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2131
        SequenceContigFileCollectionDetailSection section = new SequenceContigFileCollectionDetailSection(this, conversation, parentElement, style);
2132
        addAndAdaptSection(parentElement, section);
2133
        return section;
2134
    }
2135

    
2136
    public SingleReadPherogramCollectionDetailSection createSingleReadPherogramCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2137
        SingleReadPherogramCollectionDetailSection section = new SingleReadPherogramCollectionDetailSection(this, conversation, parentElement, style);
2138
        addAndAdaptSection(parentElement, section);
2139
        return section;
2140
    }
2141

    
2142
    public SequenceReferenceCollectionDetailSection createSequenceReferenceCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2143
        SequenceReferenceCollectionDetailSection section = new SequenceReferenceCollectionDetailSection(this, conversation, parentElement, style);
2144
        addAndAdaptSection(parentElement, section);
2145
        return section;
2146
    }
2147

    
2148
    public SingleReadGeneralDetailSection createSingleReadGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2149
        SingleReadGeneralDetailSection section = new SingleReadGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2150
        addAndAdaptSection(parentElement, section);
2151
        return section;
2152
    }
2153

    
2154
    public AmplificationGeneralDetailSection createAmplificationGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2155
        AmplificationGeneralDetailSection section = new AmplificationGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2156
        addAndAdaptSection(parentElement, section);
2157
        return section;
2158
    }
2159

    
2160
    public AmplificationPrimerDetailSection createAmplificationPrimerDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2161
        AmplificationPrimerDetailSection section = new AmplificationPrimerDetailSection(this, conversation, parentElement, selectionProvider, style);
2162
        addAndAdaptSection(parentElement, section);
2163
        return section;
2164
    }
2165

    
2166
    public AmplificationCloningDetailSection createAmplificationCloningDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2167
        AmplificationCloningDetailSection section = new AmplificationCloningDetailSection(this, conversation, parentElement, selectionProvider, style);
2168
        addAndAdaptSection(parentElement, section);
2169
        return section;
2170
    }
2171

    
2172
    public AmplificationGelPhotoCollectionDetailSection createAmplificationGelPhotoCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2173
        AmplificationGelPhotoCollectionDetailSection section = new AmplificationGelPhotoCollectionDetailSection(this, conversation, parentElement, style);
2174
        addAndAdaptSection(parentElement, section);
2175
        return section;
2176
    }
2177

    
2178
    public MediaSpecimenGeneralDetailSection createMediaSpecimenGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2179
        MediaSpecimenGeneralDetailSection section = new MediaSpecimenGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2180
        addAndAdaptSection(parentElement, section);
2181
        return section;
2182
    }
2183

    
2184
    public HybridDetailSection createHybridDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2185
        HybridDetailSection section = new HybridDetailSection(this, conversation, parentElement, selectionProvider, style);
2186
        addAndAdaptSection(parentElement, section);
2187
        return section;
2188
    }
2189

    
2190
    public UserDetailSection createUserDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2191
        UserDetailSection section = new UserDetailSection(this, conversation, parentElement, selectionProvider, style);
2192
        addAndAdaptSection(parentElement, section);
2193
        return section;
2194
    }
2195

    
2196
    public GroupDetailSection createGroupDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2197
        GroupDetailSection section = new GroupDetailSection(this, conversation, parentElement, selectionProvider, style);
2198
        addAndAdaptSection(parentElement, section);
2199
        return section;
2200
    }
2201

    
2202
    public DeterminationDetailSection createDeterminationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2203
        DeterminationDetailSection section = new DeterminationDetailSection(this, conversation, parentElement, selectionProvider, style);
2204
        addAndAdaptSection(parentElement, section);
2205
        return section;
2206
    }
2207

    
2208
    public SampleDesignationDetailSection createSampleDesignationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2209
        SampleDesignationDetailSection section = new SampleDesignationDetailSection(this, conversation, parentElement, selectionProvider, style);
2210
        addAndAdaptSection(parentElement, section);
2211
        return section;
2212
    }
2213

    
2214
    public TaxonRelationshipDetailSection createTaxonRelationshipDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2215
        TaxonRelationshipDetailSection section = new TaxonRelationshipDetailSection(this, conversation, parentElement, selectionProvider, style, true);
2216
        addAndAdaptSection(parentElement, section);
2217
        return section;
2218
    }
2219

    
2220
    public ReferencedEntityDetailSection createReferencedEntityDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2221
        ReferencedEntityDetailSection section = new ReferencedEntityDetailSection(this, conversation, parentElement, selectionProvider, style);
2222
        addAndAdaptSection(parentElement, section);
2223
        return section;
2224
    }
2225

    
2226
    public TermVocabularyDetailSection createTermVocabularyDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2227
        TermVocabularyDetailSection section = new TermVocabularyDetailSection(this, conversation, parentElement, selectionProvider, style);
2228
        addAndAdaptSection(parentElement, section);
2229
        return section;
2230
    }
2231

    
2232
    public GatheringEventDetailSection createGatheringSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2233
        GatheringEventDetailSection section = new GatheringEventDetailSection(this, conversation, parentElement, selectionProvider, style);
2234
        addAndAdaptSection(parentElement, section);
2235
        return section;
2236
    }
2237

    
2238
    public NamedAreaDetailSection createNamedAreaDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2239
        NamedAreaDetailSection section = new NamedAreaDetailSection(this, conversation, parentElement, selectionProvider, style);
2240
        addAndAdaptSection(parentElement, section);
2241
        return section;
2242
    }
2243

    
2244
    public UseRecordDetailSection createUseRecordDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2245
        UseRecordDetailSection section = new UseRecordDetailSection(this, conversation, parentElement, selectionProvider, style);
2246
        addAndAdaptSection(parentElement, section);
2247
        return section;
2248
    }
2249

    
2250
    private void addAndAdaptSection(ICdmFormElement parentElement, AbstractFormSection<?> section) {
2251
        parentElement.addElement(section);
2252
        adapt(section);
2253
    }
2254

    
2255
    //--------DetailElements------------
2256

    
2257
    public UseRecordDetailElement createUseRecordDetailElement(ICdmFormElement parentElement){
2258
        UseRecordDetailElement element = new UseRecordDetailElement(this, parentElement);
2259
        addAndAdaptElement(parentElement, element);
2260
        return element;
2261
    }
2262

    
2263
    public DefinedTermDetailElement<NamedAreaLevel> createNamedAreaLevelElement(ICdmFormElement parentElement){
2264
        DefinedTermDetailElement<NamedAreaLevel> element = new DefinedTermDetailElement<NamedAreaLevel>(this, parentElement);
2265
        addAndAdaptElement(parentElement, element);
2266
        return element;
2267
    }
2268

    
2269
    public eu.etaxonomy.taxeditor.ui.section.vocabulary.NamedAreaDetailElement createNamedAreaDetailElement(ICdmFormElement parentElement){
2270
        eu.etaxonomy.taxeditor.ui.section.vocabulary.NamedAreaDetailElement element = new eu.etaxonomy.taxeditor.ui.section.vocabulary.NamedAreaDetailElement(this, parentElement);
2271
        addAndAdaptElement(parentElement, element);
2272
        return element;
2273
    }
2274

    
2275
    public TermVocabularyDetailElement createTermVocabularyDetailElement(ICdmFormElement parentElement){
2276
        TermVocabularyDetailElement element = new TermVocabularyDetailElement(this, parentElement);
2277
        addAndAdaptElement(parentElement, element);
2278
        return element;
2279
    }
2280

    
2281
    public ReferenceEntityDetailElement createReferenceEntityDetailElement(ICdmFormElement parentElement){
2282
        ReferenceEntityDetailElement element = new ReferenceEntityDetailElement(this, parentElement);
2283
        addAndAdaptElement(parentElement, element);
2284
        return element;
2285
    }
2286
    public OriginalSourceElement createOriginalSourceElement(ICdmFormElement parentElement, CdmBase cdmEntity, String label){
2287
        OriginalSourceElement element = new OriginalSourceElement(this, parentElement, cdmEntity, label);
2288
        addAndAdaptElement(parentElement, element);
2289
        return element;
2290
    }
2291

    
2292
    public SecundumSourceElement createSecundumSourceElement(ICdmFormElement parentElement, CdmBase cdmEntity, String label){
2293
        SecundumSourceElement element = new SecundumSourceElement(this, parentElement, cdmEntity, label);
2294
        addAndAdaptElement(parentElement, element);
2295
        return element;
2296
    }
2297
    public NomenclaturalSourceElement createNomenclaturalSourceElement(ICdmFormElement parentElement, CdmBase cdmEntity, String label){
2298
        NomenclaturalSourceElement element = new NomenclaturalSourceElement(this, parentElement, cdmEntity, label);
2299
        addAndAdaptElement(parentElement, element);
2300
        return element;
2301
    }
2302

    
2303
    public TaxonRelationshipDetailElement createTaxonRelationshipDetailElement(ICdmFormElement parentElement){
2304
        TaxonRelationshipDetailElement element = new TaxonRelationshipDetailElement(this, parentElement);
2305
        addAndAdaptElement(parentElement, element);
2306
        return element;
2307
    }
2308

    
2309
    public GrantedAuthorityDetailElement createGrantedAuthorityDetailElement(ICdmFormElement parentElement){
2310
        GrantedAuthorityDetailElement element = new GrantedAuthorityDetailElement(this, parentElement);
2311
        addAndAdaptElement(parentElement, element);
2312
        return element;
2313
    }
2314

    
2315
    public GroupDetailElement createGroupDetailElement(ICdmFormElement parentElement){
2316
        GroupDetailElement element = new GroupDetailElement(this, parentElement);
2317
        addAndAdaptElement(parentElement, element);
2318
        return element;
2319
    }
2320

    
2321
    public UserDetailElement createUserDetailElement(ICdmFormElement parentElement){
2322
        UserDetailElement element = new UserDetailElement(this, parentElement);
2323
        addAndAdaptElement(parentElement, element);
2324
        return element;
2325
    }
2326

    
2327
    public HybridDetailElement createHybridDetailElement(ICdmFormElement parentElement){
2328
        HybridDetailElement element = new HybridDetailElement(this, parentElement);
2329
        addAndAdaptElement(parentElement, element);
2330
        return element;
2331
    }
2332

    
2333
    public InstitutionDetailElement createInstitutionDetailElement(ICdmFormElement parentElement){
2334
        InstitutionDetailElement element = new InstitutionDetailElement(this, parentElement);
2335
        addAndAdaptElement(parentElement, element);
2336
        return element;
2337
    }
2338

    
2339
    public PolytomousKeyNodeDetailElement createPolytomousKeyNodeDetailElement(ICdmFormElement parentElement){
2340
        PolytomousKeyNodeDetailElement element = new PolytomousKeyNodeDetailElement(this, parentElement);
2341
        addAndAdaptElement(parentElement, element);
2342
        return element;
2343
    }
2344

    
2345
    public PolytomousKeyDetailElement createPolytomousKeyDetailElement(ICdmFormElement parentElement){
2346
        PolytomousKeyDetailElement element = new PolytomousKeyDetailElement(this, parentElement);
2347
        addAndAdaptElement(parentElement, element);
2348
        return element;
2349
    }
2350

    
2351
    public CollectionDetailElement createCollectionDetailElement(ICdmFormElement parentElement){
2352
        CollectionDetailElement element = new CollectionDetailElement(this, parentElement);
2353
        addAndAdaptElement(parentElement, element);
2354
        return element;
2355
    }
2356

    
2357
    public TaxonNodeAgentRelationCollectionSection createTaxonNodeAgentRelationCollectionElement(ICdmFormElement parentElement, ConversationHolder conversation, int style){
2358
        TaxonNodeAgentRelationCollectionSection element = new TaxonNodeAgentRelationCollectionSection(this, conversation, parentElement, style);
2359
        adapt(element);
2360
        parentElement.addElement(element);
2361

    
2362
        return element;
2363
    }
2364

    
2365
    public TaxonNodeDetailElement createTaxonNodeDetailElement(ICdmFormElement parentElement, boolean createNew){
2366
        TaxonNodeDetailElement element = new TaxonNodeDetailElement(this, parentElement, createNew);
2367
        addAndAdaptElement(parentElement, element);
2368
        return element;
2369
    }
2370

    
2371
    public ClassificationDetailElement createClassificationDetailElement(ICdmFormElement parentElement){
2372
        ClassificationDetailElement element = new ClassificationDetailElement(this, parentElement);
2373
        addAndAdaptElement(parentElement, element);
2374
        return element;
2375
    }
2376

    
2377
    public CloneClassificationDetailElement createCloneClassificationDetailElement(ICdmFormElement parentElement){
2378
        CloneClassificationDetailElement element = new CloneClassificationDetailElement(this, parentElement);
2379
        addAndAdaptElement(parentElement, element);
2380
        return element;
2381
    }
2382

    
2383
    public FeatureDistributionDetailElement createFeatureDistributionDetailElement(ICdmFormElement parentElement){
2384
        FeatureDistributionDetailElement element = new FeatureDistributionDetailElement(this, parentElement);
2385
        addAndAdaptElement(parentElement, element);
2386
        return element;
2387
    }
2388

    
2389
    public NaturalLanguageDetailElement createNaturalLanguageDetailElement(ICdmFormElement parentElement){
2390
        NaturalLanguageDetailElement element = new NaturalLanguageDetailElement(this, parentElement);
2391
        addAndAdaptElement(parentElement, element);
2392
        return element;
2393
    }
2394

    
2395
    public NonViralNameDetailElement createNonViralNameDetailElement(ICdmFormElement parentElement){
2396
        NonViralNameDetailElement element = new NonViralNameDetailElement(this, parentElement);
2397
        addAndAdaptElement(parentElement, element);
2398
        return element;
2399
    }
2400

    
2401
    public DescriptionElementDetailElement createDescriptionElementDetailElement(ICdmFormElement parentElement, int style){
2402
        DescriptionElementDetailElement element = new DescriptionElementDetailElement(this, parentElement, style);
2403
        addAndAdaptElement(parentElement, element);
2404
        return element;
2405
    }
2406

    
2407
    public DescriptionDetailElement createDescriptionDetailElement(ICdmFormElement parentElement, int style){
2408
        DescriptionDetailElement element = new DescriptionDetailElement(this, parentElement, style);
2409
        addAndAdaptElement(parentElement, element);
2410
        return element;
2411
    }
2412

    
2413
    public PersonDetailElement createPersonDetailElement(ICdmFormElement parentElement, int style){
2414
        PersonDetailElement element = new PersonDetailElement(this, parentElement, style);
2415
        addAndAdaptElement(parentElement, element);
2416
        return element;
2417
    }
2418

    
2419
    public TeamDetailElement createTeamDetailElement(ICdmFormElement parentElement, int style, boolean isNomenclatural){
2420
        TeamDetailElement element = new TeamDetailElement(this, parentElement, style, isNomenclatural);
2421
        addAndAdaptElement(parentElement, element);
2422
        return element;
2423
    }
2424

    
2425
    public AuthorshipDetailElement createAuthorshipDetailElement(ICdmFormElement parentElement, int style){
2426
        AuthorshipDetailElement element = new AuthorshipDetailElement(this, parentElement, style);
2427
        addAndAdaptElement(parentElement, element);
2428
        return element;
2429
    }
2430

    
2431
    public TaxonBaseDetailElement createTaxonBaseDetailElement(ICdmFormElement parentElement, int style){
2432
        TaxonBaseDetailElement element = new TaxonBaseDetailElement(this, parentElement, style);
2433
        addAndAdaptElement(parentElement, element);
2434
        return element;
2435
    }
2436

    
2437
    public NameDetailElement createNameDetailElement(ICdmFormElement parentElement, int style){
2438
        NameDetailElement element = new NameDetailElement(this, parentElement, style);
2439
        addAndAdaptElement(parentElement, element);
2440
        return element;
2441
    }
2442

    
2443
    public ReferenceDetailElement createReferenceDetailElement(ICdmFormElement parentElement, int style){
2444
        ReferenceDetailElement element = new ReferenceDetailElement(this, parentElement, style);
2445
        addAndAdaptElement(parentElement, element);
2446
        return element;
2447
    }
2448

    
2449
    public NomenclaturalReferenceDetailElement createNomenclaturalReferenceDetailElement(ICdmFormElement parentElement, int style){
2450
        NomenclaturalReferenceDetailElement element = new NomenclaturalReferenceDetailElement(this, parentElement, style);
2451
        addAndAdaptElement(parentElement, element);
2452
        return element;
2453
    }
2454

    
2455

    
2456
    public FieldUnitGeneralDetailElement createFieldUnitGeneralDetailElement(ICdmFormElement parentElement){
2457
        FieldUnitGeneralDetailElement element = new FieldUnitGeneralDetailElement(this, parentElement);
2458
        addAndAdaptElement(parentElement, element);
2459
        return element;
2460
    }
2461

    
2462
    public DerivedUnitGeneralDetailElement createDerivedUnitGeneralDetailElement(ICdmFormElement parentElement){
2463
        DerivedUnitGeneralDetailElement element = new DerivedUnitGeneralDetailElement(this, parentElement);
2464
        addAndAdaptElement(parentElement, element);
2465
        return element;
2466
    }
2467

    
2468
    public TaxonAssociationDetailElement createTaxonAssociationDetailElement(ICdmFormElement parentElement){
2469
        TaxonAssociationDetailElement element = new TaxonAssociationDetailElement(this, parentElement);
2470
        addAndAdaptElement(parentElement, element);
2471
        return element;
2472
    }
2473

    
2474
    public PreservedSpecimenGeneralDetailElement createPreservedSpecimenGeneralDetailElement(ICdmFormElement parentElement){
2475
        PreservedSpecimenGeneralDetailElement element = new PreservedSpecimenGeneralDetailElement(this, parentElement);
2476
        addAndAdaptElement(parentElement, element);
2477
        return element;
2478
    }
2479

    
2480
    public TissueSampleGeneralDetailElement createTissueSampleGeneralDetailElement(ICdmFormElement parentElement){
2481
        TissueSampleGeneralDetailElement element = new TissueSampleGeneralDetailElement(this, parentElement);
2482
        addAndAdaptElement(parentElement, element);
2483
        return element;
2484
    }
2485

    
2486
    public DnaSampleGeneralDetailElement createDnaSampleGeneralDetailElement(ICdmFormElement parentElement){
2487
        DnaSampleGeneralDetailElement element = new DnaSampleGeneralDetailElement(this, parentElement);
2488
        addAndAdaptElement(parentElement, element);
2489
        return element;
2490
    }
2491

    
2492
    public DnaSamplePreparationPreservationDetailElement createDnaSamplePreparationPreservationDetailElement(ICdmFormElement parentElement){
2493
        DnaSamplePreparationPreservationDetailElement element = new DnaSamplePreparationPreservationDetailElement(this, parentElement);
2494
        addAndAdaptElement(parentElement, element);
2495
        return element;
2496
    }
2497

    
2498
    public DnaQualityDetailElement createDnaQualityDetailElement(ICdmFormElement parentElement){
2499
        DnaQualityDetailElement element = new DnaQualityDetailElement(this, parentElement);
2500
        addAndAdaptElement(parentElement, element);
2501
        return element;
2502
    }
2503

    
2504
    public SequenceGeneralDetailElement createSequenceGeneralDetailElement(ICdmFormElement parentElement){
2505
        SequenceGeneralDetailElement element = new SequenceGeneralDetailElement(this, parentElement);
2506
        addAndAdaptElement(parentElement, element);
2507
        return element;
2508
    }
2509

    
2510
    public SingleReadGeneralDetailElement createSingleReadGeneralDetailElement(ICdmFormElement parentElement){
2511
        SingleReadGeneralDetailElement element = new SingleReadGeneralDetailElement(this, parentElement);
2512
        addAndAdaptElement(parentElement, element);
2513
        return element;
2514
    }
2515

    
2516
    public PrimerGeneralDetailElement createPrimerGeneralDetailElement(ICdmFormElement parentElement){
2517
        PrimerGeneralDetailElement element = new PrimerGeneralDetailElement(this, parentElement);
2518
        addAndAdaptElement(parentElement, element);
2519
        return element;
2520
    }
2521

    
2522
    public AmplificationGeneralDetailElement createAmplificationGeneralDetailElement(ICdmFormElement parentElement){
2523
        AmplificationGeneralDetailElement element = new AmplificationGeneralDetailElement(this, parentElement);
2524
        addAndAdaptElement(parentElement, element);
2525
        return element;
2526
    }
2527

    
2528
    public AmplificationPrimerDetailElement createAmplificationPrimerDetailElement(ICdmFormElement parentElement){
2529
        AmplificationPrimerDetailElement element = new AmplificationPrimerDetailElement(this, parentElement);
2530
        addAndAdaptElement(parentElement, element);
2531
        return element;
2532
    }
2533

    
2534
    public AmplificationCloningDetailElement createAmplificationCloningDetailElement(ICdmFormElement parentElement){
2535
        AmplificationCloningDetailElement element = new AmplificationCloningDetailElement(this, parentElement);
2536
        addAndAdaptElement(parentElement, element);
2537
        return element;
2538
    }
2539

    
2540
    public AmplificationGelPhotoDetailElement createAmplificationGelPhotoDetailElement(ICdmFormElement parentElement){
2541
        AmplificationGelPhotoDetailElement element = new AmplificationGelPhotoDetailElement(this, parentElement);
2542
        addAndAdaptElement(parentElement, element);
2543
        return element;
2544
    }
2545

    
2546
    public MediaSpecimenGeneralDetailElement createMediaSpecimenGeneralDetailElement(ICdmFormElement parentElement){
2547
        MediaSpecimenGeneralDetailElement element = new MediaSpecimenGeneralDetailElement(this, parentElement);
2548
        addAndAdaptElement(parentElement, element);
2549
        return element;
2550
    }
2551

    
2552
    public MediaDetailElement createMediaDetailElement(ICdmFormElement parentElement){
2553
        MediaDetailElement mediaDetailElement = new MediaDetailElement(this, parentElement);
2554
        addAndAdaptElement(parentElement, mediaDetailElement);
2555
        return mediaDetailElement;
2556
    }
2557

    
2558
    public GatheringEventDetailElement createGatheringEventDetailElement(ICdmFormElement parentElement) {
2559
        GatheringEventDetailElement element = new GatheringEventDetailElement(this, parentElement);
2560
        addAndAdaptElement(parentElement, element);
2561
        return element;
2562
    }
2563

    
2564
    public FieldUnitDetailElement createFieldUnitDetailElement(ICdmFormElement parentElement) {
2565
        FieldUnitDetailElement element = new FieldUnitDetailElement(this, parentElement);
2566
        addAndAdaptElement(parentElement, element);
2567
        return element;
2568
    }
2569

    
2570
    public DerivedUnitBaseDetailElement createDerivedUnitBaseDetailElement(ICdmFormElement parentElement) {
2571
        DerivedUnitBaseDetailElement element = new DerivedUnitBaseDetailElement(this, parentElement);
2572
        addAndAdaptElement(parentElement, element);
2573
        return element;
2574
    }
2575

    
2576
    public OriginalLabelDataElement createOriginalLabelDataElement(ICdmFormElement parentElement) {
2577
        OriginalLabelDataElement element = new OriginalLabelDataElement(this, parentElement);
2578
        addAndAdaptElement(parentElement, element);
2579
        return element;
2580
    }
2581

    
2582
    public PreservedSpecimenDetailElement createPreservedSpecimenDetailElement(ICdmFormElement parentElement) {
2583
        PreservedSpecimenDetailElement element = new PreservedSpecimenDetailElement(this, parentElement);
2584
        addAndAdaptElement(parentElement, element);
2585
        return element;
2586
    }
2587

    
2588
    public DeterminationDetailElement createDeterminationDetailElement(ICdmFormElement parentElement) {
2589
        DeterminationDetailElement element = new DeterminationDetailElement(this, parentElement);
2590
        addAndAdaptElement(parentElement, element);
2591
        return element;
2592
    }
2593

    
2594
    public SampleDesignationDetailElement createSampleDesignationDetailElement(ICdmFormElement parentElement) {
2595
        SampleDesignationDetailElement element = new SampleDesignationDetailElement(this, parentElement);
2596
        addAndAdaptElement(parentElement, element);
2597
        return element;
2598
    }
2599

    
2600
    /**
2601
     * @param parentElement
2602
     * @param element
2603
     */
2604
    private void addAndAdaptElement(ICdmFormElement parentElement, AbstractCdmDetailElement<?> element) {
2605
        adapt(element);
2606
        parentElement.addElement(element);
2607
    }
2608

    
2609
    //--------EntityCollectionSection----------
2610
    public TeamMemberSection createTeamMemberSection(ConversationHolder conversation, ICdmFormElement parentElement, int style, boolean isNomenclatural){
2611
        TeamMemberSection section = new TeamMemberSection(this, conversation, parentElement, style, isNomenclatural);
2612
        addAndAdaptSection(parentElement, section);
2613
        return section;
2614
    }
2615

    
2616
    public InapplicableIfEntityCollectionSection createInapplicableIfEntityCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2617
        InapplicableIfEntityCollectionSection section = new InapplicableIfEntityCollectionSection(this, conversation, parentElement, style);
2618
        addAndAdaptSection(parentElement, section);
2619
        return section;
2620
    }
2621

    
2622
    public OnlyApplicableIfEntityCollectionSection createOnlyApplicableIfEntityCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2623
        OnlyApplicableIfEntityCollectionSection section = new OnlyApplicableIfEntityCollectionSection(this, conversation, parentElement, style);
2624
        addAndAdaptSection(parentElement, section);
2625
        return section;
2626
    }
2627

    
2628
    public InapplicableIfEntityCollectionSectionForNode createInapplicableIfEntityCollectionSectionForNode(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2629
        InapplicableIfEntityCollectionSectionForNode section = new InapplicableIfEntityCollectionSectionForNode(this, conversation, parentElement, style);
2630
        addAndAdaptSection(parentElement, section);
2631
        return section;
2632
    }
2633

    
2634
    public OnlyApplicableIfEntityCollectionSectionForNode createOnlyApplicableIfEntityCollectionSectionForNode(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2635
        OnlyApplicableIfEntityCollectionSectionForNode section = new OnlyApplicableIfEntityCollectionSectionForNode(this, conversation, parentElement, style);
2636
        addAndAdaptSection(parentElement, section);
2637
        return section;
2638
    }
2639

    
2640
    public AnnotationSection createAnnotationSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2641
        AnnotationSection section = new AnnotationSection(this, conversation, parentElement, style);
2642
        addAndAdaptSection(parentElement, section);
2643
        return section;
2644
    }
2645

    
2646
    public CreditSection createCreditSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2647
        CreditSection section = new CreditSection(this, conversation, parentElement, style);
2648
        addAndAdaptSection(parentElement, section);
2649
        return section;
2650
    }
2651
    public DescriptionElementSourceSection createDescriptionElementSourceSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2652
        DescriptionElementSourceSection section = new DescriptionElementSourceSection(this, conversation, parentElement, style);
2653
        addAndAdaptSection(parentElement, section);
2654
        return section;
2655
    }
2656
    public DescriptionElementSourceSection createDescriptionElementSourceSection(ConversationHolder conversation, ICdmFormElement parentElement, Reference defaultSource, int style){
2657
        DescriptionElementSourceSection section = new DescriptionElementSourceSection(this, conversation, parentElement, defaultSource, style);
2658
        addAndAdaptSection(parentElement, section);
2659
        return section;
2660
    }
2661

    
2662
    public ExtensionSection createExtensionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2663
        ExtensionSection section = new ExtensionSection(this, conversation, parentElement, style);
2664
        addAndAdaptSection(parentElement, section);
2665
        return section;
2666
    }
2667

    
2668
    public MarkerSection createMarkerSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2669
        MarkerSection section = new MarkerSection(this, conversation, parentElement, style);
2670
        addAndAdaptSection(parentElement, section);
2671
        return section;
2672
    }
2673

    
2674
    public MediaSection createMediaSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2675
        MediaSection section = new MediaSection(this, conversation, parentElement, style);
2676
        addAndAdaptSection(parentElement, section);
2677
        return section;
2678
    }
2679

    
2680
    public DescriptionElementMediaSection createDescriptionElementMediaSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2681
        DescriptionElementMediaSection section = new DescriptionElementMediaSection(this, conversation, parentElement, style);
2682
        addAndAdaptSection(parentElement, section);
2683
        return section;
2684
    }
2685

    
2686
    public MediaRepresentationSection createMediaRepresentationSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2687
        MediaRepresentationSection section = new MediaRepresentationSection(this, conversation, parentElement, style);
2688
        addAndAdaptSection(parentElement, section);
2689
        return section;
2690
    }
2691

    
2692
    public MediaRepresentationPartSection createMediaRepresentationPartSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2693
        MediaRepresentationPartSection section = new MediaRepresentationPartSection(this, conversation, parentElement, style);
2694
        addAndAdaptSection(parentElement, section);
2695
        return section;
2696
    }
2697

    
2698
    public ModifierSection createModifierSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2699
        ModifierSection section = new ModifierSection(this, conversation, parentElement, style);
2700
        addAndAdaptSection(parentElement, section);
2701
        return section;
2702
    }
2703

    
2704
    public NomenclaturalStatusSection createNomenclaturalStatusSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2705
        NomenclaturalStatusSection section = new NomenclaturalStatusSection(this, conversation, parentElement, style);
2706
        addAndAdaptSection(parentElement, section);
2707
        return section;
2708
    }
2709

    
2710
    public NameRelationshipDetailSection createNameRelationshipDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2711
        NameRelationshipDetailSection section = new NameRelationshipDetailSection(this, conversation, parentElement, style);
2712
        addAndAdaptSection(parentElement, section);
2713
        return section;
2714
    }
2715

    
2716
//    public ProtologueSection createProtologueSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2717
//        ProtologueSection section = new ProtologueSection(this, conversation, parentElement, style);
2718
//        addAndAdaptSection(parentElement, section);
2719
//        return section;
2720
//    }
2721
    public ExternalLinksSection createExternalLinksSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2722
        ExternalLinksSection section = new ExternalLinksSection(this, conversation, parentElement, style);
2723
        addAndAdaptSection(parentElement, section);
2724
        return section;
2725
    }
2726

    
2727
    public ExternalLinksSection createExternalLinksSection(ConversationHolder conversation, ICdmFormElement parentElement, String label, int style){
2728
        ExternalLinksSection section = new ExternalLinksSection(this, conversation, parentElement, true, label, style);
2729
        addAndAdaptSection(parentElement, section);
2730
        return section;
2731
    }
2732

    
2733
    public ExternalLinksSection createExternalLinksSection(ConversationHolder conversation, ICdmFormElement parentElement, String label, boolean isWithTypeAndDesc, int style){
2734
        ExternalLinksSection section = new ExternalLinksSection(this, conversation, parentElement, isWithTypeAndDesc, label, style);
2735
        addAndAdaptSection(parentElement, section);
2736
        return section;
2737
    }
2738

    
2739
    public RightsSection createRightsSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2740
        RightsSection section = new RightsSection(this, conversation, parentElement, style);
2741

    
2742
        addAndAdaptSection(parentElement, section);
2743
        return section;
2744
    }
2745

    
2746
    public SourceSection createSourceSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2747
        SourceSection section = new SourceSection(this, conversation, parentElement, style);
2748
        addAndAdaptSection(parentElement, section);
2749
        return section;
2750
    }
2751

    
2752
    public ScopeSection createScopeSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2753
        ScopeSection section = new ScopeSection(this, conversation, parentElement, style);
2754
        addAndAdaptSection(parentElement, section);
2755
        return section;
2756
    }
2757

    
2758
    public DescriptionSourceSection createDescriptionSourceSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2759
        DescriptionSourceSection section = new DescriptionSourceSection(this, conversation, parentElement, style);
2760
        addAndAdaptSection(parentElement, section);
2761
        return section;
2762
    }
2763

    
2764
    public TypeDesignationSection createTypeDesignationSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2765
        TypeDesignationSection section = new TypeDesignationSection(this, conversation, parentElement, style);
2766
        addAndAdaptSection(parentElement, section);
2767
        return section;
2768
    }
2769

    
2770
    public StateDataSection createStateDataSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2771
        StateDataSection section = new StateDataSection(this, conversation, parentElement, style);
2772
        addAndAdaptSection(parentElement, section);
2773
        return section;
2774
    }
2775

    
2776
    public StatisticalMeasurementValueSection createStatisticalMeasurementValueSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2777
        StatisticalMeasurementValueSection section = new StatisticalMeasurementValueSection(this, conversation, parentElement, style);
2778
        addAndAdaptSection(parentElement, section);
2779
        return section;
2780
    }
2781

    
2782
    public DescribedSpecimenSection createDescribedSpecimenSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2783
        DescribedSpecimenSection section = new DescribedSpecimenSection(this, conversation, parentElement, style);
2784
        addAndAdaptSection(parentElement, section);
2785
        return section;
2786
    }
2787

    
2788
    public StateVocabularyCollectionSection createStateVocabulariesSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2789
        StateVocabularyCollectionSection section = new StateVocabularyCollectionSection(this, conversation, parentElement, style);
2790
        addAndAdaptSection(parentElement, section);
2791
        return section;
2792
    }
2793

    
2794
    public StateVocabularyDtoCollectionSection createStateVocabulariesDtoSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2795
        StateVocabularyDtoCollectionSection section = new StateVocabularyDtoCollectionSection(this, conversation, parentElement, style);
2796
        addAndAdaptSection(parentElement, section);
2797
        return section;
2798
    }
2799

    
2800
    public RecommendedModifierVocabulariesCollectionSection createRecommendedModifierVocabulariesCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2801
        RecommendedModifierVocabulariesCollectionSection section = new RecommendedModifierVocabulariesCollectionSection(this, conversation, parentElement, style);
2802
        addAndAdaptSection(parentElement, section);
2803
        return section;
2804
    }
2805
    public RecommendedModifierVocabulariesDtoCollectionSection createRecommendedModifierVocabulariesDtoCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2806
        RecommendedModifierVocabulariesDtoCollectionSection section = new RecommendedModifierVocabulariesDtoCollectionSection(this, conversation, parentElement, style);
2807
        addAndAdaptSection(parentElement, section);
2808
        return section;
2809
    }
2810

    
2811
    public MeasurementUnitCollectionSection createMeasurementUnitCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2812
        MeasurementUnitCollectionSection section = new MeasurementUnitCollectionSection(this, conversation, parentElement, style);
2813
        addAndAdaptSection(parentElement, section);
2814
        return section;
2815
    }
2816

    
2817
    public MeasurementUnitDtoCollectionSection createMeasurementUnitDtoCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2818
        MeasurementUnitDtoCollectionSection section = new MeasurementUnitDtoCollectionSection(this, conversation, parentElement, style);
2819
        addAndAdaptSection(parentElement, section);
2820
        return section;
2821
    }
2822
    public StatisticalMeasureCollectionSection createStatisticalMeasureCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2823
        StatisticalMeasureCollectionSection section = new StatisticalMeasureCollectionSection(this, conversation, parentElement, style);
2824
        addAndAdaptSection(parentElement, section);
2825
        return section;
2826
    }
2827

    
2828
    public StatisticalMeasureDtoCollectionSection createStatisticalMeasureDtoCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2829
        StatisticalMeasureDtoCollectionSection section = new StatisticalMeasureDtoCollectionSection(this, conversation, parentElement, style);
2830
        addAndAdaptSection(parentElement, section);
2831
        return section;
2832
    }
2833

    
2834
    public CollectingAreasDetailSection createCollectingAreasDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2835
        CollectingAreasDetailSection section = new CollectingAreasDetailSection(this, conversation, parentElement, style);
2836
        addAndAdaptSection(parentElement, section);
2837
        return section;
2838
    }
2839

    
2840
    public GeoScopeDetailSection createGeoScopeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2841
        GeoScopeDetailSection section = new GeoScopeDetailSection(this, conversation, parentElement, style);
2842
        addAndAdaptSection(parentElement, section);
2843
        return section;
2844
    }
2845

    
2846
    public GeoScopePolyKeyDetailSection createGeoScopePolyKeyDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2847
        GeoScopePolyKeyDetailSection section = new GeoScopePolyKeyDetailSection(this, conversation, parentElement, style);
2848
        addAndAdaptSection(parentElement, section);
2849
        return section;
2850
    }
2851

    
2852
    public IdentifierSection createIdentifierDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2853
        IdentifierSection section = new IdentifierSection(this, conversation, parentElement, style);
2854
        addAndAdaptSection(parentElement, section);
2855
        return section;
2856
    }
2857

    
2858
    public DerivedUnitFacadeIdentifierSection createDerivedUnitFacadeIdentifierSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2859
    	DerivedUnitFacadeIdentifierSection section = new DerivedUnitFacadeIdentifierSection(this, conversation, parentElement, style);
2860
    	addAndAdaptSection(parentElement, section);
2861
    	return section;
2862
    }
2863

    
2864
    public CurrentSampleDesignationDetailSection createCurrentSampleDesignationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2865
        CurrentSampleDesignationDetailSection section = new CurrentSampleDesignationDetailSection(this, conversation, parentElement, style);
2866
        addAndAdaptSection(parentElement, section);
2867
        return section;
2868
    }
2869

    
2870
    public CurrentDeterminationDetailSection createCurrentDeterminationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2871
        CurrentDeterminationDetailSection section = new CurrentDeterminationDetailSection(this, conversation, parentElement, style);
2872
        addAndAdaptSection(parentElement, section);
2873
        return section;
2874
    }
2875

    
2876
    public PreservedSpecimenCurrentDeterminationDetailSection createPreservedSpecimenCurrentDeterminationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2877
        PreservedSpecimenCurrentDeterminationDetailSection section = new PreservedSpecimenCurrentDeterminationDetailSection(this, conversation, parentElement, style);
2878
        addAndAdaptSection(parentElement, section);
2879
        return section;
2880
    }
2881

    
2882
    public SampleDesignationHistoryDetailSection createSampleDesignationHistoryDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2883
        SampleDesignationHistoryDetailSection section = new SampleDesignationHistoryDetailSection(this, conversation, parentElement, style);
2884
        addAndAdaptSection(parentElement, section);
2885
        return section;
2886
    }
2887

    
2888
    public DeterminationHistoryDetailSection createDeterminationHistoryDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2889
        DeterminationHistoryDetailSection section = new DeterminationHistoryDetailSection(this, conversation, parentElement, style);
2890
        addAndAdaptSection(parentElement, section);
2891
        return section;
2892
    }
2893

    
2894
    public SpecimenCollectionDetailSection createSpecimenCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2895
        SpecimenCollectionDetailSection section = new SpecimenCollectionDetailSection(this, conversation, parentElement, style);
2896
        addAndAdaptSection(parentElement, section);
2897
        return section;
2898
    }
2899

    
2900
    public PreservedSpecimenSourceCollectionDetailSection createPreservedSpecimenSourceCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2901
        PreservedSpecimenSourceCollectionDetailSection section = new PreservedSpecimenSourceCollectionDetailSection(this, conversation, parentElement, style);
2902
        addAndAdaptSection(parentElement, section);
2903
        return section;
2904
    }
2905

    
2906
    public SourceCollectionDetailSection createSourceCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2907
        SourceCollectionDetailSection section = new SourceCollectionDetailSection(this, conversation, parentElement, style);
2908
        addAndAdaptSection(parentElement, section);
2909
        return section;
2910
    }
2911

    
2912
    public ScopeRestrictionSection createScopeRestrictionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2913
        ScopeRestrictionSection section = new ScopeRestrictionSection(this, conversation, parentElement, style);
2914
        addAndAdaptSection(parentElement, section);
2915
        return section;
2916
    }
2917

    
2918
    public MemberDetailSection createMemberDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2919
        MemberDetailSection section = new MemberDetailSection(this, conversation, parentElement, style);
2920
        addAndAdaptSection(parentElement, section);
2921
        return section;
2922
    }
2923

    
2924
    public GrantedAuthorityDetailSection createGrantedAuthorityDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2925
        GrantedAuthorityDetailSection section = new GrantedAuthorityDetailSection(this, conversation, parentElement, style);
2926
        addAndAdaptSection(parentElement, section);
2927
        return section;
2928
    }
2929

    
2930
    public GroupsByUserDetailSection createGroupsByUserDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2931
        GroupsByUserDetailSection section = new GroupsByUserDetailSection(this, conversation, parentElement, style);
2932
        addAndAdaptSection(parentElement, section);
2933
        return section;
2934
    }
2935

    
2936
    public TaxonomicScopeSection createTaxonomicScopeSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2937
        TaxonomicScopeSection section = new TaxonomicScopeSection(this, conversation, parentElement, style);
2938
        addAndAdaptSection(parentElement, section);
2939
        return section;
2940
    }
2941

    
2942
    public AbstractEntityCollectionElement createEntityCollectionElement(AbstractFormSection parentElement,
2943
            Object versionableEntity, SelectionListener removeListener, Color backgroundColor, int style) {
2944
        AbstractEntityCollectionElement<?> element = null;
2945

    
2946
        Object entity = HibernateProxyHelper.deproxy(versionableEntity);
2947

    
2948
        if (entity instanceof Annotation) {
2949
            element = new AnnotationElement(this, parentElement, (Annotation) entity, removeListener, style);
2950
        }else if (entity instanceof Person ) {
2951
            boolean isNomenclatural = false;
2952
            if (parentElement instanceof TeamMemberSection){
2953
                isNomenclatural = ((TeamMemberSection) parentElement).isNomenclaturalTeam();
2954
            }
2955
            element = new TeamMemberElement(this, parentElement, (Person) entity, removeListener, style, isNomenclatural);
2956
        } else if (entity instanceof Credit) {
2957
            element = new CreditElement(this, parentElement, (Credit) entity, removeListener, style);
2958
        } else if (entity instanceof Extension) {
2959
            element = new ExtensionElement(this, parentElement, (Extension) entity, removeListener, style);
2960
        } else if (entity instanceof ExternalLink) {
2961
            boolean isAdvanced = true;
2962
            if(parentElement instanceof ExternalLinksSection){
2963
                isAdvanced = ((ExternalLinksSection)parentElement).isAdvanced();
2964
            }
2965
            element = new ExternalLinksElement(this, parentElement, (ExternalLink) entity, isAdvanced, removeListener, style);
2966
        } else if (entity instanceof Marker) {
2967
            element = new MarkerElement(this, parentElement, (Marker) entity, removeListener, style);
2968
        } else if (entity instanceof TaxonNodeAgentRelation) {
2969
            element = new TaxonNodeAgentRelationCollectionElement(this, parentElement, (TaxonNodeAgentRelation) entity, removeListener, backgroundColor, style);
2970
        }else if (entity instanceof Media) {
2971
            element = new MediaMetaElement(this, parentElement, (Media) entity, removeListener, style);
2972
        } else if (entity instanceof MediaRepresentation) {
2973
            element = new MediaRepresentationElement(this, parentElement, (MediaRepresentation) entity, removeListener,
2974
                    style);
2975
        } else if (entity instanceof ImageFile) {
2976
            element = new ImageFileElement(this, parentElement, (ImageFile) entity, removeListener, style);
2977
        } else if (entity instanceof MediaRepresentationPart) {
2978
            element = new MediaRepresentationPartElement<>(this, parentElement, (MediaRepresentationPart) entity,
2979
                    removeListener, style);
2980
        } else if (entity instanceof NomenclaturalStatus) {
2981
            element = new NomenclaturalStatusElement(this, parentElement, (NomenclaturalStatus) entity, removeListener,
2982
                    style);
2983
        } else if (entity instanceof Rights) {
2984
            element = new RightsElement(this, parentElement, (Rights) entity, removeListener, style);
2985
        } else if (entity instanceof DescriptionElementSource && parentElement.getEntity() instanceof CommonTaxonName) {
2986
            element = new CommonNameSourceElement(this, parentElement, (DescriptionElementSource) entity,
2987
                    removeListener, style);
2988
        } else if (entity instanceof DescriptionElementSource  && parentElement.getEntity() instanceof Distribution) {
2989
            Composite parent = null;
2990
            if (parentElement instanceof DescriptionElementSourceSection){
2991
               parent = ((DescriptionElementSourceSection)parentElement).getParent();
2992
            }
2993
            element = new DescriptionElementSourceElement(this, parentElement, (DescriptionElementSource) entity,
2994
                    removeListener, style, false);
2995
        } else if (entity instanceof DescriptionElementSource) {
2996
            element = new DescriptionElementSourceElement(this, parentElement, (DescriptionElementSource) entity,
2997
                    removeListener, style, false);
2998
        }else if (entity instanceof TaxonNodeAgentRelation) {
2999
            element = new TaxonNodeAgentRelationCollectionElement(this, parentElement, (TaxonNodeAgentRelation) entity,
3000
                    removeListener,backgroundColor, style);
3001
        }else if (entity instanceof IdentifiableSource && parentElement.getEntity() instanceof DescriptionElementBase) {
3002
            element = new IdentifiableSourceElement(this, parentElement, (IdentifiableSource) entity, removeListener,
3003
                    style, false);
3004
        } else if (entity instanceof IdentifiableSource ) {
3005
            element = new IdentifiableSourceElement(this, parentElement, (IdentifiableSource) entity, removeListener,
3006
                    style, true);
3007
        } else if (entity instanceof DefinedTerm) {
3008
            switch(((DefinedTerm)entity).getTermType()) {
3009
            case Scope:
3010
                element = new ScopeElement(this,
3011
                        parentElement,
3012
                        (DefinedTerm) entity,
3013
                        removeListener,
3014
                        style);
3015
                break;
3016
            case Modifier:
3017
                element = new ModifierElement(this,
3018
                        parentElement,
3019
                        (DefinedTerm) entity,
3020
                        removeListener,
3021
                        style);
3022
                break;
3023
            default:
3024
                break;
3025

    
3026
            }
3027
        } else if (entity instanceof Reference) {
3028
            if(parentElement instanceof SequenceReferenceCollectionDetailSection){
3029
                element = new SequenceReferenceCollectionDetailElement(this, parentElement, (Reference) entity, removeListener, style);
3030
            }
3031
            else{
3032
                element = new DescriptionSourceElement(this, parentElement, (Reference) entity, removeListener, style);
3033
            }
3034
        } else if (entity instanceof NameTypeDesignation) {
3035
            element = new NameTypeDesignationElement(this, parentElement, (NameTypeDesignation) entity, removeListener,
3036
                    style);
3037
        } else if (entity instanceof TextualTypeDesignation) {
3038
            element = new TextTypeDesignationElement(this, parentElement, (TextualTypeDesignation) entity, removeListener,
3039
                    style);
3040
        } else if (entity instanceof NameRelationship) {
3041
            element = new NameRelationshipDetailElement(this, parentElement, (NameRelationship) entity, removeListener,
3042
                    style);
3043
        } else if (entity instanceof SpecimenTypeDesignation) {
3044
            if(parentElement instanceof DerivedUnitTypeDesignationSection){
3045
                element = new DerivedUnitTypeDesignationElement(this, parentElement, (SpecimenTypeDesignation) entity,
3046
                        removeListener, style);
3047
            }
3048
            else{
3049
                element = new SpecimenTypeDesignationElement(this, parentElement, (SpecimenTypeDesignation) entity,
3050
                        removeListener, style);
3051
            }
3052
        } else if (entity instanceof StateData) {
3053
            element = new StateDataElement(this, parentElement, (StateData) entity, removeListener, style);
3054
        } else if (entity instanceof StatisticalMeasurementValue) {
3055
            element = new StatisticalMeasurementValueElement(this, parentElement, (StatisticalMeasurementValue) entity,
3056
                    removeListener, style);
3057
        } else if (entity instanceof DerivedUnit) {
3058
            switch(((DerivedUnit)entity).getRecordBasis()) {
3059
            case LivingSpecimen:
3060
            case PreservedSpecimen:
3061
            case OtherSpecimen:
3062
                element = new SpecimenCollectionDetailElement(this,
3063
                        parentElement,
3064
                        (DerivedUnit) entity,
3065
                        removeListener,
3066
                        style);
3067
                break;
3068
            default:
3069
                element = new DerivedUnitElement(this,
3070
                        parentElement,
3071
                        (DerivedUnit) entity,
3072
                        removeListener,
3073
                        style);
3074
            }
3075

    
3076
        } else if (entity instanceof NamedArea) {
3077
            element = new CollectingAreaDetailElement(this, parentElement, (NamedArea) entity, removeListener, style);
3078
        } else if (entity instanceof DeterminationEvent) {
3079
            element = new DeterminationEventDetailElement(this, parentElement, (DeterminationEvent) entity, removeListener, style);
3080
        } else if (entity instanceof User) {
3081
            element = new MemberDetailElement(this, parentElement, (User) entity, removeListener, style);
3082
        } else if (entity instanceof GrantedAuthority) {
3083
            element = new GrantedAuthorityCollectionElement(this, parentElement, (GrantedAuthorityImpl) entity, ((Group)parentElement.getEntity()),
3084
                    removeListener, style);
3085
        } else if (entity instanceof Group) {
3086
            element = new GroupsByUserDetailElement(this, parentElement, (Group) entity, removeListener, style);
3087
        } else if (entity instanceof Taxon) {
3088
            element = new TaxonDetailElement(this, parentElement, (Taxon) entity, removeListener, style);
3089
        } else if (entity instanceof DescriptionElementBase) {
3090
            // this is the special case for protologs, maybe we can do this
3091
            // differently when API improves
3092
            DescriptionElementBase descriptionElement = (DescriptionElementBase) entity;
3093
//            if (descriptionElement.getFeature().equals(Feature.PROTOLOGUE())) {
3094
//                element = new ProtologueElement(this, parentElement, descriptionElement, removeListener, style);
3095
//            }
3096
        } else if (entity instanceof Identifier) {
3097
            if(parentElement instanceof AbstractSampleDesignationDetailSection){
3098
                element = new SampleDesignationTextDetailElement(this, parentElement, (Identifier<DnaSample>) entity, removeListener, backgroundColor, style);
3099
            }
3100
            else{
3101
                element = new IdentifierElement(this, parentElement, (Identifier) entity, removeListener, style);
3102
            }
3103
        } else if (entity instanceof TermVocabulary) {
3104
            TermVocabulary<?> termVocabulary = (TermVocabulary<?>)entity;
3105
            switch (termVocabulary.getTermType()) {
3106
            case State:
3107
                element = new StateVocabularyCollectionElement(this, parentElement, (TermVocabulary<State>) entity, removeListener, backgroundColor, style);
3108
                break;
3109
            case Modifier:
3110
                element = new RecommendedModifierVocabulariesElement(this, parentElement, (TermVocabulary<DefinedTerm>) entity, removeListener, backgroundColor, style);
3111
                break;
3112
            default:
3113
                break;
3114
            }
3115
        }else if (entity instanceof TermVocabularyDto) {
3116
            TermVocabularyDto termVocabulary = (TermVocabularyDto)entity;
3117
            switch (termVocabulary.getTermType()) {
3118
            case State:
3119
                element = new StateVocabularyDtoCollectionElement(this, parentElement, termVocabulary, removeListener, backgroundColor, style);
3120
                break;
3121
            case Modifier:
3122
                element = new RecommendedModifierDtoVocabulariesElement(this, parentElement, termVocabulary, removeListener, backgroundColor, style);
3123
                break;
3124
            default:
3125
                break;
3126
            }
3127
        }else if (entity instanceof MeasurementUnit) {
3128
            element = new MeasurementUnitCollectionElement(this, parentElement, (MeasurementUnit) entity, removeListener, backgroundColor, style);
3129
        }else if (entity instanceof TermDto) {
3130
            if(((TermDto)entity).getTermType().equals(TermType.MeasurementUnit)){
3131
                element = new MeasurementUnitDtoCollectionElement(this, parentElement, (TermDto) entity, removeListener, backgroundColor, style);
3132
            }else if (((TermDto)entity).getTermType().equals(TermType.StatisticalMeasure)){
3133
                element = new StatisticalMeasureDtoCollectionElement(this, parentElement, (TermDto) entity, removeListener, backgroundColor, style);
3134
            }
3135
        }else if (entity instanceof StatisticalMeasure) {
3136
            element = new StatisticalMeasureCollectionElement(this, parentElement, (StatisticalMeasure) entity, removeListener, backgroundColor, style);
3137
        } else if (entity instanceof FeatureState && parentElement instanceof InapplicableIfEntityCollectionSection) {
3138
            element = new InapplicableIfCollectionElement(this, parentElement, (FeatureState) entity, removeListener, backgroundColor, style);
3139
        } else if (entity instanceof FeatureState && parentElement instanceof OnlyApplicableIfEntityCollectionSection) {
3140
            element = new OnlyApplicableIfCollectionElement(this, parentElement, (FeatureState) entity, removeListener, backgroundColor, style);
3141
        }
3142

    
3143
        //check for parent section when entity is null
3144
        //this happens when AbstractUnboundEntityCollectionSection is used
3145
        if(element==null){
3146
            if(parentElement instanceof ScopeSection || parentElement instanceof ScopeRestrictionSection){
3147
                element = new ScopeElement(this,
3148
                        parentElement,
3149
                        (DefinedTerm) entity,
3150
                        removeListener,
3151
                        style);
3152
            }
3153
            else if(parentElement instanceof ModifierSection){
3154
                element = new ModifierElement(this,
3155
                        parentElement,
3156
                        (DefinedTerm) entity,
3157
                        removeListener,
3158
                        style);
3159
            }
3160
        }
3161

    
3162

    
3163
        if (element == null) {
3164
            MessagingUtils.messageDialog(
3165
                    String.format("Error when creating section %s",
3166
                            parentElement.getClass().getSimpleName()),
3167
                    this,
3168
                    String.format("Could not generate collection element for entity of class %s."
3169
                            + " Looks like the case is not yet handled. Check implementation.\n"
3170
                            + "Entity: %s", entity.getClass(), entity.toString()), null);
3171
        }
3172

    
3173
        else{
3174
            if (backgroundColor != null && !backgroundColor.isDisposed()) {
3175
                element.setPersistentBackground(backgroundColor);
3176
            }
3177
            adapt(element);
3178
            parentElement.addElement(element);
3179
        }
3180

    
3181
        return element;
3182
    }
3183

    
3184
    /**
3185
     * <p>
3186
     * Creates a selection element for the given type T.
3187
     * </p>
3188
     * <p>
3189
     * <strong>Selection elements not handled by this method:</strong>
3190
     * <ul>
3191
     * <li>{@link TaxonNodeSelectionElement} see
3192
     * {@link #createTaxonNodeSelectionElement(ConversationHolder, ICdmFormElement, String, TaxonNode, int, int)}
3193
     * </li>
3194
     * <li>{@link NomenclaturalAuthorTeamSelectionElement} see
3195
     * {@link #createNomenclaturalAuthorTeamSelectionElement(ConversationHolder, ICdmFormElement, String, Team, int, int)}
3196
     * </li>
3197
     * </ul>
3198
     * </p>
3199
     *
3200
     * @param clazz
3201
     *            a {@link Class} object of the type that you want the selection
3202
     *            element to handle
3203
     * @param parentElement
3204
     *            a {@link ICdmFormElement} object.
3205
     * @param labelString
3206
     *            a {@link String} object.
3207
     * @param selectionType
3208
     * @param selection
3209
     *            a {@link ICdmBase} object.
3210
     * @param style
3211
     *            a int.
3212
     * @param conversation
3213
     *            a {@link ConversationHolder} object.
3214
     * @return a {@link EntitySelectionElement} object.
3215
     */
3216
    public <T extends CdmBase> EntitySelectionElement<T> createSelectionElement(Class<T> clazz,
3217
            ICdmFormElement parentElement, String labelString, T selection, int mode,
3218
            int style, Integer limit) {
3219
        EntitySelectionElement<T> element = new EntitySelectionElement<T>(this,
3220
                parentElement, clazz,
3221
                labelString, selection, mode, style, limit);
3222
        adapt(element);
3223
        parentElement.addElement(element);
3224
        return element;
3225
    }
3226

    
3227
    public <T extends CdmBase> EntitySelectionElement<T> createSelectionElement(Class<T> clazz,
3228
            ICdmFormElement parentElement, String labelString, T selection, int mode,
3229
            int style, boolean filterElement) {
3230
        EntitySelectionElement<T> element = new EntitySelectionElement<T>(this, //conversation,
3231
                parentElement, clazz,
3232
                labelString, selection, mode, style, filterElement);
3233
        adapt(element);
3234
        parentElement.addElement(element);
3235
        return element;
3236
    }
3237

    
3238
    public <T extends CdmBase> EntitySelectionElement<T> createSelectionElement(Class<T> clazz,
3239
//            ConversationHolder conversation,
3240
            ICdmFormElement parentElement, String labelString, T selection, int mode,
3241
            int style) {
3242
        EntitySelectionElement<T> element = new EntitySelectionElement<T>(this,
3243
                parentElement, clazz,
3244
                labelString, selection, mode, style);
3245
        adapt(element);
3246
        parentElement.addElement(element);
3247
        return element;
3248
    }
3249

    
3250
    public CommonNameReferenceSelectionElement createCommonNameReferenceSelectionElement(ICdmFormElement parentElement, String labelString, Reference selection, int mode,
3251
          int style) {
3252
        CommonNameReferenceSelectionElement element = new CommonNameReferenceSelectionElement(this,
3253
              parentElement, labelString, selection, mode, style);
3254
      adapt(element);
3255
      parentElement.addElement(element);
3256
      return element;
3257
  }
3258

    
3259
    /**
3260
     * <p>
3261
     * Creates a selection element for the given type T which shows only the <b>abbreviated</b> title as the label.
3262
     * </p>
3263
     * <p>
3264
     * <strong>Selection elements not handled by this method:</strong>
3265
     * <ul>
3266
     * <li>{@link TaxonNodeSelectionElement} see
3267
     * {@link #createTaxonNodeSelectionElement(ConversationHolder, ICdmFormElement, String, TaxonNode, int, int)}
3268
     * </li>
3269
     * <li>{@link NomenclaturalAuthorTeamSelectionElement} see
3270
     * {@link #createNomenclaturalAuthorTeamSelectionElement(ConversationHolder, ICdmFormElement, String, Team, int, int)}
3271
     * </li>
3272
     * </ul>
3273
     * </p>
3274
     *
3275
     * @param clazz
3276
     *            a {@link Class} object of the type that you want the selection
3277
     *            element to handle
3278
     * @param parentElement
3279
     *            a {@link ICdmFormElement} object.
3280
     * @param labelString
3281
     *            a {@link String} object.
3282
     * @param selectionType
3283
     * @param selection
3284
     *            a {@link ICdmBase} object.
3285
     * @param style
3286
     *            a int.
3287
     * @param conversation
3288
     *            a {@link ConversationHolder} object.
3289
     * @return a {@link EntitySelectionElement} object.
3290
     */
3291
    public <T extends CdmBase> EntitySelectionElementWithAbbreviatedTitle<T> createSelectionElementWithAbbreviatedTitle(
3292
            Class<T> clazz, ConversationHolder conversation, ICdmFormElement parentElement, String labelString,
3293
            T selection, int mode, int style) {
3294
        EntitySelectionElementWithAbbreviatedTitle<T> element = new EntitySelectionElementWithAbbreviatedTitle<T>(this, //conversation,
3295
                parentElement, clazz,
3296
                labelString, selection, mode, style);
3297
        adapt(element);
3298
        parentElement.addElement(element);
3299
        return element;
3300
    }
3301

    
3302
    public TaxonNodeSelectionElement createTaxonNodeSelectionElement(ConversationHolder conversation,
3303
            ICdmFormElement parentElement, String labelString, TaxonNode selection, int mode, int style) {
3304
        TaxonNodeSelectionElement element = new TaxonNodeSelectionElement(this,
3305
                parentElement,
3306
                labelString, selection, mode, style, null);
3307
        adapt(element);
3308
        parentElement.addElement(element);
3309
        return element;
3310
    }
3311
    public TaxonNodeSelectionElement createTaxonNodeSelectionElement(ConversationHolder conversation,
3312
            ICdmFormElement parentElement, String labelString, TaxonNode selection, int mode, int style, Integer limit) {
3313
        TaxonNodeSelectionElement element = new TaxonNodeSelectionElement(this, //conversation,
3314
                parentElement,
3315
                labelString, selection, mode, style, limit);
3316
        adapt(element);
3317
        parentElement.addElement(element);
3318
        return element;
3319
    }
3320

    
3321

    
3322
//    public NomenclaturalAuthorTeamSelectionElement createNomenclaturalAuthorTeamSelectionElement(
3323
//            ConversationHolder conversation, ICdmFormElement parentElement, String labelString, Team selection,
3324
//            int mode, int style) {
3325
//        NomenclaturalAuthorTeamSelectionElement element = new NomenclaturalAuthorTeamSelectionElement(this,
3326
//                conversation, parentElement, labelString, selection, mode, style);
3327
//        adapt(element);
3328
//        parentElement.addElement(element);
3329
//        return element;
3330
//    }
3331

    
3332
    /** {@inheritDoc} */
3333
    public LabelElement createLabel(ICdmFormElement parentElement, String text) {
3334
        LabelElement labelElement = new LabelElement(this, parentElement, text);
3335
        adapt(labelElement);
3336
        parentElement.addElement(labelElement);
3337
        return labelElement;
3338
    }
3339

    
3340

    
3341

    
3342
//    public DateElementFormElement createDateElementForm(ICdmFormElement formElement, String labelText, DateTime dateTime, int style){
3343
//        Label label = new Label(formElement.getLayoutComposite(), style);
3344
//        label.setText(labelText+" (yyyy-MM-dd)");
3345
//        DateElementFormElement dateElement = new DateElementFormElement(this, dateTime, style, formElement.getLayoutComposite());
3346
//        dateElement.initInternalController();
3347
//
3348
//        return dateElement;
3349
//    }
3350

    
3351
    public DateElement createDateElement(ICdmFormElement formElement, String labelText, DateTime dateTime, int style, boolean editableText){
3352
    	 Label label = new Label(formElement.getLayoutComposite(), style);
3353
         label.setText(labelText);
3354
         label.setLayoutData(new TableWrapData(TableWrapData.LEFT, TableWrapData.MIDDLE, 1, 1));
3355
         DateElement dateElement = new DateElement(formElement.getLayoutComposite(), dateTime, labelText, style, editableText);
3356
         dateElement.initController(this, formElement);
3357
         dateElement.setLayoutData(new TableWrapData(TableWrapData.LEFT, TableWrapData.MIDDLE, 1, 1));
3358
         return dateElement;
3359
    }
3360

    
3361
    /**
3362
     * <p>
3363
     * Getter for the field <code>selectionProvider</code>.
3364
     * </p>
3365
     *
3366
     * @return a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
3367
     */
3368
    public ISelectionProvider getSelectionProvider() {
3369
        return selectionProvider;
3370
    }
3371

    
3372
    /**
3373
     * <p>
3374
     * createDetailedDescriptionDetailElement
3375
     * </p>
3376
     *
3377
     * @param parentElement
3378
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
3379
     *            object.
3380
     * @param entity
3381
     *            a
3382
     *            {@link eu.etaxonomy.cdm.model.description.DescriptionElementBase}
3383
     *            object.
3384
     * @param style
3385
     *            a int.
3386
     * @return a
3387
     *         {@link eu.etaxonomy.taxeditor.ui.section.description.detail.AbstractDetailedDescriptionDetailElement}
3388
     *         object.
3389
     */
3390
    public AbstractDetailedDescriptionDetailElement createDetailedDescriptionDetailElement(
3391
            ICdmFormElement parentElement, DescriptionElementBase entity, int style, boolean enabled) {
3392
        AbstractDetailedDescriptionDetailElement detailedDescriptionElement = null;
3393

    
3394
        if (entity instanceof CategoricalData) {
3395
            detailedDescriptionElement = new CategoricalDataDetailElement(this, parentElement,
3396
                    (CategoricalData) entity, style);
3397
        } else if (entity instanceof CommonTaxonName) {
3398
            detailedDescriptionElement = new CommonNameDetailElement(this, parentElement, (CommonTaxonName) entity,
3399
                    style);
3400
        } else if (entity instanceof Distribution && !enabled) {
3401
            detailedDescriptionElement = new DistributionDetailElement(this, parentElement, (Distribution) entity,
3402
                    enabled, style);
3403
        } else if (entity instanceof Distribution) {
3404
            detailedDescriptionElement = new DistributionDetailElement(this, parentElement, (Distribution) entity,
3405
                    true, style);
3406
        }else if (entity instanceof IndividualsAssociation) {
3407
            detailedDescriptionElement = new IndividualsAssociationDetailElement(this, parentElement,
3408
                    (IndividualsAssociation) entity, style);
3409
        } else if (entity instanceof QuantitativeData) {
3410
            detailedDescriptionElement = new QuantitativeDataDetailElement(this, parentElement,
3411
                    (QuantitativeData) entity, style);
3412
        } else if (entity instanceof TaxonInteraction) {
3413
            detailedDescriptionElement = new TaxonInteractionDetailElement(this, parentElement,
3414
                    (TaxonInteraction) entity, style);
3415
        } else if (entity instanceof TemporalData) {
3416
            detailedDescriptionElement = new TemporalDataDetailElement(this, parentElement, (TemporalData) entity, style);
3417
        } else if (entity instanceof TextData) {
3418
            detailedDescriptionElement = new TextDataDetailElement(this, parentElement, (TextData) entity, style);
3419
        }
3420
        else {
3421
            throw new IllegalStateException("There is no interface for the given description element");
3422
        }
3423
        adapt(detailedDescriptionElement);
3424
        parentElement.addElement(detailedDescriptionElement);
3425
        return detailedDescriptionElement;
3426

    
3427
    }
3428

    
3429
    /**
3430
     * Creates a styled text as a part of the form.
3431
     *
3432
     * @param parent
3433
     *            the text parent
3434
     * @param value
3435
     *            the text initial value
3436
     * @param style
3437
     *            the text style
3438
     * @return the text widget
3439
     */
3440
    public StyledText createStyledText(Composite parent, String value, int style) {
3441
        StyledText text = new StyledText(parent, getBorderStyle() | style | getOrientation());
3442
        if (value != null) {
3443
            text.setText(value);
3444
        }
3445
        text.setForeground(getColors().getForeground());
3446
        text.setBackground(getColors().getBackground());
3447
        // text.addFocusListener(visibilityHandler);
3448
        return text;
3449
    }
3450

    
3451
    public PreservedSpecimenDetailSection createPreservedSpecimenDetailsSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style) {
3452
        PreservedSpecimenDetailSection section = new PreservedSpecimenDetailSection(this, conversation, parentElement, selectionProvider, style);
3453
        addAndAdaptSection(parentElement, section);
3454
        return section;
3455
    }
3456

    
3457
    /**
3458
     * @param formElement
3459
     * @param conversationHolder
3460
     * @param style
3461
     * @return
3462
     */
3463
    public TaxonNodeAgentRelationCollectionSection createTaxonNodeAgentRelationCollectionSection(
3464
            ICdmFormElement formElement, ConversationHolder conversationHolder, int style) {
3465
        TaxonNodeAgentRelationCollectionSection section = new TaxonNodeAgentRelationCollectionSection(this, conversationHolder, formElement, style);
3466
        addAndAdaptSection(formElement, section);
3467
        return section;
3468
    }
3469

    
3470

    
3471
	public TaxonOfRelationshipElement createTaxonOfRelationshipDetailElement(
3472
			ICdmFormElement parentElement, int style) {
3473
		TaxonOfRelationshipElement section = new TaxonOfRelationshipElement(this, parentElement, style);
3474
		addAndAdaptElement(parentElement, section);
3475
        return section;
3476
	}
3477

    
3478
	public TaxonDetailSection createTaxonDetailSection(ConversationHolder conversationHolder,
3479
			ICdmFormElement formElement, ISelectionProvider selectionProvider, int style) {
3480
			TaxonDetailSection section = new TaxonDetailSection(this, conversationHolder, formElement, selectionProvider, style);
3481
	        addAndAdaptSection(formElement, section);
3482
	        return section;
3483
	}
3484

    
3485

    
3486
    /**
3487
     * <p>
3488
     * createTextWithLabelElement
3489
     * </p>
3490
     *
3491
     * @param parentElement
3492
     *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
3493
     *            object.
3494
     * @param labelString
3495
     *            a {@link java.lang.String} object.
3496
     * @param initialText
3497
     *            a {@link java.lang.String} object.
3498
     * @param textLimit maximal number of characters allowed
3499
     * @param style
3500
     *            a int.
3501
     * @return a {@link eu.etaxonomy.taxeditor.ui.element.TextWithLabelElement}
3502
     *         object.
3503
     */
3504
    public RuleConsideredElement createRuleConsideredElement(ICdmFormElement parentElement, String labelString, boolean isShowCodeEdition, int style) {
3505
        RuleConsideredElement element = new RuleConsideredElement(this, parentElement, labelString, isShowCodeEdition, style);
3506
        adapt(element);
3507
        parentElement.addElement(element);
3508
        return element;
3509
    }
3510

    
3511
    /**
3512
     * @param class1
3513
     * @param formElement
3514
     * @param string
3515
     * @param area
3516
     * @param nothing
3517
     * @param style
3518
     * @return
3519
     */
3520
    public EntitySelectionElementWithIdInVocabulary createSelectionElementWithIdInVocabulary(Class<NamedArea> clazz,
3521
            ICdmFormElement formElement, String labelString, NamedArea area, int mode, int style) {
3522
        EntitySelectionElementWithIdInVocabulary element = new EntitySelectionElementWithIdInVocabulary(this,
3523
                formElement, clazz, labelString, area, mode, style);
3524
        adapt(element);
3525
        formElement.addElement(element);
3526
        return element;
3527
    }
3528

    
3529
    /**
3530
     * @param extendedTimePeriodElement
3531
     * @param twistie
3532
     * @return
3533
     */
3534
    public ExtendedTimeDetailSection createExtendedTimeDetailSection(
3535
            ExtendedTimePeriodElement parentElement, int style) {
3536
        ExtendedTimeDetailSection section = new ExtendedTimeDetailSection(this, parentElement,  style);
3537
        parentElement.addElement(section);
3538
        adapt(section);
3539
        return section;
3540
    }
3541
    public ExtendedTimePeriodElement createExtendedTimePeriodElement(
3542
            ICdmFormElement parentElement, String labelString, ExtendedTimePeriod timePeriod, int style) {
3543
        ExtendedTimePeriodElement section = new ExtendedTimePeriodElement(this, parentElement, labelString, timePeriod, style);
3544
        parentElement.addElement(section);
3545
        adapt(section);
3546
        return section;
3547
    }
3548

    
3549

    
3550

    
3551

    
3552
//	public RichTextWithLabelElement createRichTextLabelElement(ICdmFormElement parentElement, String labelString, String initialText, int textHeight, int style) {
3553
//		 RichTextWithLabelElement element = new RichTextWithLabelElement(this, parentElement, labelString,
3554
//				 initialText, textHeight, style);
3555
//	        adapt(element);
3556
//	        parentElement.addElement(element);
3557
//	        return element;
3558
//	}
3559

    
3560

    
3561

    
3562

    
3563

    
3564

    
3565

    
3566
}
(11-11/57)