fix #9747: add language detail element and smaller changes in menu
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / element / CdmFormFactory.java
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.name.NameRelationship;
108 import eu.etaxonomy.cdm.model.name.NameRelationshipType;
109 import eu.etaxonomy.cdm.model.name.NameTypeDesignation;
110 import eu.etaxonomy.cdm.model.name.NomenclaturalStatus;
111 import eu.etaxonomy.cdm.model.name.SpecimenTypeDesignation;
112 import eu.etaxonomy.cdm.model.name.TextualTypeDesignation;
113 import eu.etaxonomy.cdm.model.occurrence.DerivedUnit;
114 import eu.etaxonomy.cdm.model.occurrence.DeterminationEvent;
115 import eu.etaxonomy.cdm.model.permission.GrantedAuthorityImpl;
116 import eu.etaxonomy.cdm.model.permission.Group;
117 import eu.etaxonomy.cdm.model.permission.User;
118 import eu.etaxonomy.cdm.model.reference.Reference;
119 import eu.etaxonomy.cdm.model.taxon.Taxon;
120 import eu.etaxonomy.cdm.model.taxon.TaxonNode;
121 import eu.etaxonomy.cdm.model.taxon.TaxonNodeAgentRelation;
122 import eu.etaxonomy.cdm.model.taxon.TaxonRelationshipType;
123 import eu.etaxonomy.cdm.model.term.DefinedTerm;
124 import eu.etaxonomy.cdm.model.term.DefinedTermBase;
125 import eu.etaxonomy.cdm.model.term.IEnumTerm;
126 import eu.etaxonomy.cdm.model.term.Representation;
127 import eu.etaxonomy.cdm.model.term.TermBase;
128 import eu.etaxonomy.cdm.model.term.TermTree;
129 import eu.etaxonomy.cdm.model.term.TermType;
130 import eu.etaxonomy.cdm.model.term.TermVocabulary;
131 import eu.etaxonomy.cdm.persistence.dto.TermDto;
132 import eu.etaxonomy.cdm.persistence.dto.TermVocabularyDto;
133 import eu.etaxonomy.cdm.strategy.parser.ParserProblem;
134 import eu.etaxonomy.taxeditor.model.MessagingUtils;
135 import eu.etaxonomy.taxeditor.preference.PreferencesUtil;
136 import eu.etaxonomy.taxeditor.store.StoreUtil;
137 import eu.etaxonomy.taxeditor.ui.combo.EnumComboElement;
138 import eu.etaxonomy.taxeditor.ui.combo.InverseTermWrapper;
139 import eu.etaxonomy.taxeditor.ui.combo.MisappliedRelationshipComboElement;
140 import eu.etaxonomy.taxeditor.ui.combo.NameRelationshipTypeCombo;
141 import eu.etaxonomy.taxeditor.ui.combo.VocabularyComboElement;
142 import eu.etaxonomy.taxeditor.ui.combo.term.TermComboElement;
143 import eu.etaxonomy.taxeditor.ui.dialog.CloneClassificationDetailElement;
144 import eu.etaxonomy.taxeditor.ui.element.MinMaxTextSection.UnitType;
145 import eu.etaxonomy.taxeditor.ui.mvc.element.DateElement;
146 import eu.etaxonomy.taxeditor.ui.openurl.IOpenUrlEnabled;
147 import eu.etaxonomy.taxeditor.ui.openurl.OpenUrlSelectorElement;
148 import eu.etaxonomy.taxeditor.ui.password.EditPasswordElement;
149 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
150 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
151 import eu.etaxonomy.taxeditor.ui.section.AbstractEntityCollectionElement;
152 import eu.etaxonomy.taxeditor.ui.section.EmptyElement;
153 import eu.etaxonomy.taxeditor.ui.section.agent.InstitutionDetailElement;
154 import eu.etaxonomy.taxeditor.ui.section.agent.InstitutionDetailSection;
155 import eu.etaxonomy.taxeditor.ui.section.agent.PersonDetailElement;
156 import eu.etaxonomy.taxeditor.ui.section.agent.PersonDetailSection;
157 import eu.etaxonomy.taxeditor.ui.section.agent.TeamDetailElement;
158 import eu.etaxonomy.taxeditor.ui.section.agent.TeamDetailSection;
159 import eu.etaxonomy.taxeditor.ui.section.agent.TeamMemberElement;
160 import eu.etaxonomy.taxeditor.ui.section.agent.TeamMemberSection;
161 import eu.etaxonomy.taxeditor.ui.section.agent.TeamOrPersonBaseDetailSection;
162 import eu.etaxonomy.taxeditor.ui.section.classification.ClassificationDetailElement;
163 import eu.etaxonomy.taxeditor.ui.section.classification.ClassificationDetailSection;
164 import eu.etaxonomy.taxeditor.ui.section.classification.TaxonNodeAgentRelationCollectionElement;
165 import eu.etaxonomy.taxeditor.ui.section.classification.TaxonNodeAgentRelationCollectionSection;
166 import eu.etaxonomy.taxeditor.ui.section.classification.TaxonNodeDetailElement;
167 import eu.etaxonomy.taxeditor.ui.section.classification.TaxonNodeDetailSection;
168 import eu.etaxonomy.taxeditor.ui.section.common.ExternalLinksElement;
169 import eu.etaxonomy.taxeditor.ui.section.common.ExternalLinksSection;
170 import eu.etaxonomy.taxeditor.ui.section.common.ReferenceEntityDetailElement;
171 import eu.etaxonomy.taxeditor.ui.section.common.ReferencedEntityDetailSection;
172 import eu.etaxonomy.taxeditor.ui.section.description.CommonNameSourceElement;
173 import eu.etaxonomy.taxeditor.ui.section.description.DerivedUnitElement;
174 import eu.etaxonomy.taxeditor.ui.section.description.DescribedSpecimenSection;
175 import eu.etaxonomy.taxeditor.ui.section.description.DescriptionDetailElement;
176 import eu.etaxonomy.taxeditor.ui.section.description.DescriptionDetailSection;
177 import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementDetailElement;
178 import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementDetailSection;
179 import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementMediaSection;
180 import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementSourceElement;
181 import eu.etaxonomy.taxeditor.ui.section.description.DescriptionElementSourceSection;
182 import eu.etaxonomy.taxeditor.ui.section.description.DescriptionSourceElement;
183 import eu.etaxonomy.taxeditor.ui.section.description.DescriptionSourceSection;
184 import eu.etaxonomy.taxeditor.ui.section.description.MediaDetailsSection;
185 import eu.etaxonomy.taxeditor.ui.section.description.ModifierElement;
186 import eu.etaxonomy.taxeditor.ui.section.description.ModifierSection;
187 import eu.etaxonomy.taxeditor.ui.section.description.NaturalLanguageDetailElement;
188 import eu.etaxonomy.taxeditor.ui.section.description.NaturalLanguageSection;
189 import eu.etaxonomy.taxeditor.ui.section.description.ScopeElement;
190 import eu.etaxonomy.taxeditor.ui.section.description.ScopeSection;
191 import eu.etaxonomy.taxeditor.ui.section.description.StateDataElement;
192 import eu.etaxonomy.taxeditor.ui.section.description.StateDataSection;
193 import eu.etaxonomy.taxeditor.ui.section.description.StatisticalMeasurementValueElement;
194 import eu.etaxonomy.taxeditor.ui.section.description.StatisticalMeasurementValueSection;
195 import eu.etaxonomy.taxeditor.ui.section.description.detail.AbstractDetailedDescriptionDetailElement;
196 import eu.etaxonomy.taxeditor.ui.section.description.detail.CategoricalDataDetailElement;
197 import eu.etaxonomy.taxeditor.ui.section.description.detail.CommonNameDetailElement;
198 import eu.etaxonomy.taxeditor.ui.section.description.detail.DistributionDetailElement;
199 import eu.etaxonomy.taxeditor.ui.section.description.detail.IndividualsAssociationDetailElement;
200 import eu.etaxonomy.taxeditor.ui.section.description.detail.QuantitativeDataDetailElement;
201 import eu.etaxonomy.taxeditor.ui.section.description.detail.TaxonInteractionDetailElement;
202 import eu.etaxonomy.taxeditor.ui.section.description.detail.TemporalDataDetailElement;
203 import eu.etaxonomy.taxeditor.ui.section.description.detail.TextDataDetailElement;
204 import eu.etaxonomy.taxeditor.ui.section.feature.CharacterDetailElement;
205 import eu.etaxonomy.taxeditor.ui.section.feature.CharacterDetailSection;
206 import eu.etaxonomy.taxeditor.ui.section.feature.CharacterDtoDetailElement;
207 import eu.etaxonomy.taxeditor.ui.section.feature.CharacterDtoDetailSection;
208 import eu.etaxonomy.taxeditor.ui.section.feature.CharacterNodeDetailElement;
209 import eu.etaxonomy.taxeditor.ui.section.feature.CharacterNodeDetailSection;
210 import eu.etaxonomy.taxeditor.ui.section.feature.CharacterNodeDtoDetailElement;
211 import eu.etaxonomy.taxeditor.ui.section.feature.CharacterNodeDtoDetailSection;
212 import eu.etaxonomy.taxeditor.ui.section.feature.FeatureDistributionDetailElement;
213 import eu.etaxonomy.taxeditor.ui.section.feature.FeatureDistributionDetailSection;
214 import eu.etaxonomy.taxeditor.ui.section.feature.InapplicableIfCollectionElement;
215 import eu.etaxonomy.taxeditor.ui.section.feature.InapplicableIfEntityCollectionSection;
216 import eu.etaxonomy.taxeditor.ui.section.feature.InapplicableIfEntityCollectionSectionForNode;
217 import eu.etaxonomy.taxeditor.ui.section.feature.OnlyApplicableIfCollectionElement;
218 import eu.etaxonomy.taxeditor.ui.section.feature.OnlyApplicableIfEntityCollectionSection;
219 import eu.etaxonomy.taxeditor.ui.section.feature.OnlyApplicableIfEntityCollectionSectionForNode;
220 import eu.etaxonomy.taxeditor.ui.section.feature.TermNodeDetailElement;
221 import eu.etaxonomy.taxeditor.ui.section.feature.TermNodeDetailSection;
222 import eu.etaxonomy.taxeditor.ui.section.feature.TermTreeDetailElement;
223 import eu.etaxonomy.taxeditor.ui.section.feature.TermTreeDetailElementForNode;
224 import eu.etaxonomy.taxeditor.ui.section.feature.TermTreeDetailSection;
225 import eu.etaxonomy.taxeditor.ui.section.feature.TermTreeDetailSectionForNode;
226 import eu.etaxonomy.taxeditor.ui.section.grantedAuthority.GrantedAuthorityCollectionElement;
227 import eu.etaxonomy.taxeditor.ui.section.grantedAuthority.GrantedAuthorityDetailElement;
228 import eu.etaxonomy.taxeditor.ui.section.grantedAuthority.GrantedAuthorityDetailSection;
229 import eu.etaxonomy.taxeditor.ui.section.group.GroupDetailElement;
230 import eu.etaxonomy.taxeditor.ui.section.group.GroupDetailSection;
231 import eu.etaxonomy.taxeditor.ui.section.group.MemberDetailElement;
232 import eu.etaxonomy.taxeditor.ui.section.group.MemberDetailSection;
233 import eu.etaxonomy.taxeditor.ui.section.key.PolytomousKeyDetailElement;
234 import eu.etaxonomy.taxeditor.ui.section.key.PolytomousKeyDetailSection;
235 import eu.etaxonomy.taxeditor.ui.section.key.PolytomousKeyNodeDetailElement;
236 import eu.etaxonomy.taxeditor.ui.section.key.PolytomousKeyNodeDetailSection;
237 import eu.etaxonomy.taxeditor.ui.section.key.ScopeRestrictionSection;
238 import eu.etaxonomy.taxeditor.ui.section.key.TaxonomicScopeSection;
239 import eu.etaxonomy.taxeditor.ui.section.media.ImageFileElement;
240 import eu.etaxonomy.taxeditor.ui.section.media.MediaDetailElement;
241 import eu.etaxonomy.taxeditor.ui.section.media.MediaMetaElement;
242 import eu.etaxonomy.taxeditor.ui.section.media.MediaRepresentationElement;
243 import eu.etaxonomy.taxeditor.ui.section.media.MediaRepresentationPartElement;
244 import eu.etaxonomy.taxeditor.ui.section.media.MediaRepresentationPartSection;
245 import eu.etaxonomy.taxeditor.ui.section.media.MediaRepresentationSection;
246 import eu.etaxonomy.taxeditor.ui.section.media.MediaSection;
247 import eu.etaxonomy.taxeditor.ui.section.name.AuthorshipDetailElement;
248 import eu.etaxonomy.taxeditor.ui.section.name.AuthorshipDetailSection;
249 import eu.etaxonomy.taxeditor.ui.section.name.HybridDetailElement;
250 import eu.etaxonomy.taxeditor.ui.section.name.HybridDetailSection;
251 import eu.etaxonomy.taxeditor.ui.section.name.NameDetailElement;
252 import eu.etaxonomy.taxeditor.ui.section.name.NameDetailSection;
253 import eu.etaxonomy.taxeditor.ui.section.name.NameRelationshipDetailElement;
254 import eu.etaxonomy.taxeditor.ui.section.name.NameRelationshipDetailSection;
255 import eu.etaxonomy.taxeditor.ui.section.name.NameTypeDesignationElement;
256 import eu.etaxonomy.taxeditor.ui.section.name.NomenclaturalStatusElement;
257 import eu.etaxonomy.taxeditor.ui.section.name.NomenclaturalStatusSection;
258 import eu.etaxonomy.taxeditor.ui.section.name.NonViralNameDetailElement;
259 import eu.etaxonomy.taxeditor.ui.section.name.NonViralNameDetailSection;
260 import eu.etaxonomy.taxeditor.ui.section.name.RuleConsideredElement;
261 import eu.etaxonomy.taxeditor.ui.section.name.SpecimenTypeDesignationElement;
262 import eu.etaxonomy.taxeditor.ui.section.name.TextTypeDesignationElement;
263 import eu.etaxonomy.taxeditor.ui.section.name.TypeDesignationSection;
264 import eu.etaxonomy.taxeditor.ui.section.occurrence.CollectingAreaDetailElement;
265 import eu.etaxonomy.taxeditor.ui.section.occurrence.CollectingAreasDetailSection;
266 import eu.etaxonomy.taxeditor.ui.section.occurrence.CollectionDetailElement;
267 import eu.etaxonomy.taxeditor.ui.section.occurrence.CurrentDeterminationDetailSection;
268 import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitBaseDetailElement;
269 import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitBaseDetailSection;
270 import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitGeneralDetailElement;
271 import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitGeneralDetailSection;
272 import eu.etaxonomy.taxeditor.ui.section.occurrence.DerivedUnitMediaSection;
273 import eu.etaxonomy.taxeditor.ui.section.occurrence.DeterminationDetailElement;
274 import eu.etaxonomy.taxeditor.ui.section.occurrence.DeterminationDetailSection;
275 import eu.etaxonomy.taxeditor.ui.section.occurrence.DeterminationEventDetailElement;
276 import eu.etaxonomy.taxeditor.ui.section.occurrence.DeterminationHistoryDetailSection;
277 import eu.etaxonomy.taxeditor.ui.section.occurrence.EmptySection;
278 import eu.etaxonomy.taxeditor.ui.section.occurrence.FieldUnitFacadeDetailElement;
279 import eu.etaxonomy.taxeditor.ui.section.occurrence.FieldUnitFacadeDetailSection;
280 import eu.etaxonomy.taxeditor.ui.section.occurrence.FieldUnitFacadeGeneralDetailElement;
281 import eu.etaxonomy.taxeditor.ui.section.occurrence.FieldUnitFacadeGeneralDetailSection;
282 import eu.etaxonomy.taxeditor.ui.section.occurrence.GatheringEventDetailElement;
283 import eu.etaxonomy.taxeditor.ui.section.occurrence.GatheringEventDetailSection;
284 import eu.etaxonomy.taxeditor.ui.section.occurrence.GeoScopeDetailSection;
285 import eu.etaxonomy.taxeditor.ui.section.occurrence.GeoScopePolyKeyDetailSection;
286 import eu.etaxonomy.taxeditor.ui.section.occurrence.OriginalLabelDataSection;
287 import eu.etaxonomy.taxeditor.ui.section.occurrence.SourceCollectionDetailSection;
288 import eu.etaxonomy.taxeditor.ui.section.occurrence.SpecimenCollectionDetailElement;
289 import eu.etaxonomy.taxeditor.ui.section.occurrence.SpecimenCollectionDetailSection;
290 import eu.etaxonomy.taxeditor.ui.section.occurrence.association.DerivedUnitTypeDesignationElement;
291 import eu.etaxonomy.taxeditor.ui.section.occurrence.association.DerivedUnitTypeDesignationSection;
292 import eu.etaxonomy.taxeditor.ui.section.occurrence.association.TaxonAssociationDetailElement;
293 import eu.etaxonomy.taxeditor.ui.section.occurrence.association.TaxonAssociationDetailSection;
294 import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenCurrentDeterminationDetailSection;
295 import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenDetailElement;
296 import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenDetailSection;
297 import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenGeneralDetailElement;
298 import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenGeneralDetailSection;
299 import eu.etaxonomy.taxeditor.ui.section.occurrence.derivedUnit.PreservedSpecimenSourceCollectionDetailSection;
300 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AbstractSampleDesignationDetailSection;
301 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationCloningDetailElement;
302 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationCloningDetailSection;
303 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationGelPhotoCollectionDetailSection;
304 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationGelPhotoDetailElement;
305 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationGeneralDetailElement;
306 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationGeneralDetailSection;
307 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationPrimerDetailElement;
308 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.AmplificationPrimerDetailSection;
309 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.CurrentSampleDesignationDetailSection;
310 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaQualityDetailElement;
311 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaQualityDetailSection;
312 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaSampleGeneralDetailElement;
313 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaSampleGeneralDetailSection;
314 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaSamplePreparationPreservationDetailElement;
315 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.DnaSamplePreparationPreservationSection;
316 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.PrimerGeneralDetailElement;
317 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SampleDesignationDetailElement;
318 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SampleDesignationDetailSection;
319 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SampleDesignationHistoryDetailSection;
320 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SampleDesignationTextDetailElement;
321 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceContigFileCollectionDetailSection;
322 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceGeneralDetailElement;
323 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceGeneralDetailSection;
324 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceReferenceCollectionDetailElement;
325 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SequenceReferenceCollectionDetailSection;
326 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SingleReadGeneralDetailElement;
327 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SingleReadGeneralDetailSection;
328 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.SingleReadPherogramCollectionDetailSection;
329 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.TissueSampleGeneralDetailElement;
330 import eu.etaxonomy.taxeditor.ui.section.occurrence.dna.TissueSampleGeneralDetailSection;
331 import eu.etaxonomy.taxeditor.ui.section.occurrence.media.MediaSpecimenGeneralDetailElement;
332 import eu.etaxonomy.taxeditor.ui.section.occurrence.media.MediaSpecimenGeneralDetailSection;
333 import eu.etaxonomy.taxeditor.ui.section.reference.AdvancedNomenclaturalSourceElement;
334 import eu.etaxonomy.taxeditor.ui.section.reference.AdvancedSourceElement;
335 import eu.etaxonomy.taxeditor.ui.section.reference.NomenclaturalReferenceDetailElement;
336 import eu.etaxonomy.taxeditor.ui.section.reference.NomenclaturalReferenceDetailSection;
337 import eu.etaxonomy.taxeditor.ui.section.reference.NomenclaturalSourceElement;
338 import eu.etaxonomy.taxeditor.ui.section.reference.OriginalSourceAdvancedSection;
339 import eu.etaxonomy.taxeditor.ui.section.reference.OriginalSourceElement;
340 import eu.etaxonomy.taxeditor.ui.section.reference.ReferenceDetailElement;
341 import eu.etaxonomy.taxeditor.ui.section.reference.ReferenceDetailSection;
342 import eu.etaxonomy.taxeditor.ui.section.reference.SecundumSourceElement;
343 import eu.etaxonomy.taxeditor.ui.section.reference.SingleSourceSection;
344 import eu.etaxonomy.taxeditor.ui.section.supplemental.AnnotationElement;
345 import eu.etaxonomy.taxeditor.ui.section.supplemental.AnnotationSection;
346 import eu.etaxonomy.taxeditor.ui.section.supplemental.CdmBaseElement;
347 import eu.etaxonomy.taxeditor.ui.section.supplemental.CdmBaseSection;
348 import eu.etaxonomy.taxeditor.ui.section.supplemental.CreditElement;
349 import eu.etaxonomy.taxeditor.ui.section.supplemental.CreditSection;
350 import eu.etaxonomy.taxeditor.ui.section.supplemental.ExtensionElement;
351 import eu.etaxonomy.taxeditor.ui.section.supplemental.ExtensionSection;
352 import eu.etaxonomy.taxeditor.ui.section.supplemental.HeadlineSection;
353 import eu.etaxonomy.taxeditor.ui.section.supplemental.IdentifiableSourceElement;
354 import eu.etaxonomy.taxeditor.ui.section.supplemental.MarkerElement;
355 import eu.etaxonomy.taxeditor.ui.section.supplemental.MarkerSection;
356 import eu.etaxonomy.taxeditor.ui.section.supplemental.RightsElement;
357 import eu.etaxonomy.taxeditor.ui.section.supplemental.RightsSection;
358 import eu.etaxonomy.taxeditor.ui.section.supplemental.SourceSection;
359 import eu.etaxonomy.taxeditor.ui.section.supplemental.VersionElement;
360 import eu.etaxonomy.taxeditor.ui.section.supplemental.VersionSection;
361 import eu.etaxonomy.taxeditor.ui.section.supplemental.identifier.DerivedUnitFacadeIdentifierSection;
362 import eu.etaxonomy.taxeditor.ui.section.supplemental.identifier.IdentifierElement;
363 import eu.etaxonomy.taxeditor.ui.section.supplemental.identifier.IdentifierSection;
364 import eu.etaxonomy.taxeditor.ui.section.taxon.ParsingMessageElement;
365 import eu.etaxonomy.taxeditor.ui.section.taxon.ParsingMessagesSection;
366 import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonBaseDetailElement;
367 import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonBaseDetailSection;
368 import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonDetailElement;
369 import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonDetailSection;
370 import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonOfRelationshipElement;
371 import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonRelationshipDetailElement;
372 import eu.etaxonomy.taxeditor.ui.section.taxon.TaxonRelationshipDetailSection;
373 import eu.etaxonomy.taxeditor.ui.section.user.GroupsByUserDetailElement;
374 import eu.etaxonomy.taxeditor.ui.section.user.GroupsByUserDetailSection;
375 import eu.etaxonomy.taxeditor.ui.section.user.UserDetailElement;
376 import eu.etaxonomy.taxeditor.ui.section.user.UserDetailSection;
377 import eu.etaxonomy.taxeditor.ui.section.userecords.UseRecordDetailElement;
378 import eu.etaxonomy.taxeditor.ui.section.userecords.UseRecordDetailSection;
379 import eu.etaxonomy.taxeditor.ui.section.vocabulary.DefinedTermDetailElement;
380 import eu.etaxonomy.taxeditor.ui.section.vocabulary.DefinedTermDetailSection;
381 import eu.etaxonomy.taxeditor.ui.section.vocabulary.FeatureDetailElement;
382 import eu.etaxonomy.taxeditor.ui.section.vocabulary.LanguageDetailElement;
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 ICdmFormElement 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 if(definedTermClass.equals(Language.class)){
1802 element = new LanguageDetailElement(this, parentElement);
1803 } else {
1804 element = new DefinedTermDetailElement(this, parentElement);
1805 }
1806
1807
1808 adapt(element);
1809 parentElement.addElement(element);
1810 return element;
1811 }
1812
1813 public CharacterNodeDetailSection createCharacterNodeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1814 CharacterNodeDetailSection section = new CharacterNodeDetailSection(this, conversation, parentElement, selectionProvider, style);
1815 addAndAdaptSection(parentElement, section);
1816 return section;
1817 }
1818
1819 public CharacterNodeDtoDetailSection createCharacterNodeDtoDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1820 CharacterNodeDtoDetailSection section = new CharacterNodeDtoDetailSection(this, conversation, parentElement, selectionProvider, style);
1821 addAndAdaptSection(parentElement, section);
1822 return section;
1823 }
1824
1825 public CharacterDetailSection createCharacterDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1826 CharacterDetailSection section = new CharacterDetailSection(this, conversation, parentElement, selectionProvider, style);
1827 addAndAdaptSection(parentElement, section);
1828 return section;
1829 }
1830
1831 public CharacterDtoDetailSection createCharacterDtoDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1832 CharacterDtoDetailSection section = new CharacterDtoDetailSection(this, conversation, parentElement, selectionProvider, style);
1833 addAndAdaptSection(parentElement, section);
1834 return section;
1835 }
1836
1837 public CharacterNodeDetailElement createCharacterNodeDetailElement(ICdmFormElement parentElement, int style){
1838 CharacterNodeDetailElement element = new CharacterNodeDetailElement(this, parentElement);
1839 addAndAdaptElement(parentElement, element);
1840 return element;
1841 }
1842 public CharacterNodeDtoDetailElement createCharacterNodeDtoDetailElement(ICdmFormElement parentElement, int style){
1843 CharacterNodeDtoDetailElement element = new CharacterNodeDtoDetailElement(this, parentElement);
1844 addAndAdaptElement(parentElement, element);
1845 return element;
1846 }
1847
1848 public CharacterDetailElement createCharacterDetailElement(ICdmFormElement parentElement, int style){
1849 CharacterDetailElement element = new CharacterDetailElement(this, parentElement);
1850 addAndAdaptElement(parentElement, element);
1851 return element;
1852 }
1853 public CharacterDtoDetailElement createCharacterDtoDetailElement(ICdmFormElement parentElement, int style){
1854 CharacterDtoDetailElement element = new CharacterDtoDetailElement(this, parentElement);
1855 addAndAdaptElement(parentElement, element);
1856 return element;
1857 }
1858
1859 public TermTreeDetailElement createFeatureTreeDetailElement(ICdmFormElement parentElement, int style){
1860 TermTreeDetailElement element = new TermTreeDetailElement(this, parentElement);
1861 addAndAdaptElement(parentElement, element);
1862 return element;
1863 }
1864
1865 /**
1866 * @param parentElement
1867 * @param style
1868 * @return
1869 */
1870 public AbstractCdmDetailElement<TermTree> createFeatureTreeDetailElementForTree(
1871 AbstractCdmDetailSection<TermTree> parentElement, int style) {
1872 TermTreeDetailElementForNode element = new TermTreeDetailElementForNode(this, parentElement);
1873 addAndAdaptElement(parentElement, element);
1874 return element;
1875 }
1876
1877 public TermNodeDetailElement createFeatureNodeDetailElement(ICdmFormElement parentElement, int style){
1878 TermNodeDetailElement element = new TermNodeDetailElement(this, parentElement);
1879 addAndAdaptElement(parentElement, element);
1880 return element;
1881 }
1882
1883
1884 //--------DetailSections---------
1885 public NameDetailSection createNameDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1886 NameDetailSection section = new NameDetailSection(this, conversation, parentElement, selectionProvider, style);
1887 addAndAdaptSection(parentElement, section);
1888 return section;
1889 }
1890
1891 public TermNodeDetailSection createFeatureNodeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1892 TermNodeDetailSection section = new TermNodeDetailSection(this, conversation, parentElement, selectionProvider, style);
1893 addAndAdaptSection(parentElement, section);
1894 return section;
1895 }
1896
1897 public TermTreeDetailSection createFeatureTreeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1898 TermTreeDetailSection section = new TermTreeDetailSection(this, conversation, parentElement, selectionProvider, style);
1899 addAndAdaptSection(parentElement, section);
1900 return section;
1901 }
1902 public TermTreeDetailSectionForNode createFeatureTreeDetailSectionForTree(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1903 TermTreeDetailSectionForNode section = new TermTreeDetailSectionForNode(this, conversation, parentElement, selectionProvider, style);
1904 addAndAdaptSection(parentElement, section);
1905 return section;
1906 }
1907
1908 public ReferenceDetailSection createReferenceDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1909 ReferenceDetailSection section = new ReferenceDetailSection(this, conversation, parentElement, selectionProvider, style);
1910 addAndAdaptSection(parentElement, section);
1911 return section;
1912 }
1913
1914 public NomenclaturalReferenceDetailSection createNomenclaturalReferenceDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1915 NomenclaturalReferenceDetailSection section = new NomenclaturalReferenceDetailSection(this, conversation, parentElement, selectionProvider, style);
1916 addAndAdaptSection(parentElement, section);
1917 return section;
1918 }
1919
1920 public OriginalSourceAdvancedSection createOriginalSourceAdvancedSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1921 OriginalSourceAdvancedSection section = new OriginalSourceAdvancedSection(this, conversation, parentElement, selectionProvider, style);
1922 addAndAdaptSection(parentElement, section);
1923 return section;
1924 }
1925
1926 public AdvancedSourceElement createAdvancedSourceDetailElement(ICdmFormElement parentElement, int style){
1927 AdvancedSourceElement element = new AdvancedSourceElement(this, parentElement);
1928 addAndAdaptElement(parentElement, element);
1929 return element;
1930 }
1931
1932 public AdvancedSourceElement createAdvancedNomenclaturalSourceDetailElement(ICdmFormElement parentElement, int style){
1933 AdvancedNomenclaturalSourceElement element = new AdvancedNomenclaturalSourceElement(this, parentElement);
1934 addAndAdaptElement(parentElement, element);
1935 return element;
1936 }
1937
1938 public SingleSourceSection createSingleSourceSection(ConversationHolder conversation, ICdmFormElement parentElement, CdmBase cdmEntity, ISelectionProvider selectionProvider, String label, int style){
1939 SingleSourceSection section = new SingleSourceSection(this, conversation, parentElement, cdmEntity, selectionProvider, style, label);
1940 addAndAdaptSection(parentElement, section);
1941 return section;
1942 }
1943
1944 public TaxonBaseDetailSection createTaxonBaseDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1945 TaxonBaseDetailSection section = new TaxonBaseDetailSection(this, conversation, parentElement, selectionProvider, style);
1946 addAndAdaptSection(parentElement, section);
1947 return section;
1948 }
1949
1950 public AuthorshipDetailSection createAuthorshipDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1951 AuthorshipDetailSection section = new AuthorshipDetailSection(this, conversation, parentElement, selectionProvider, style);
1952 addAndAdaptSection(parentElement, section);
1953 return section;
1954 }
1955
1956 public TeamOrPersonBaseDetailSection createTeamOrPersonBaseDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1957 TeamOrPersonBaseDetailSection section = new TeamOrPersonBaseDetailSection(this, conversation, parentElement, selectionProvider, style);
1958 addAndAdaptSection(parentElement, section);
1959 return section;
1960 }
1961
1962 public TeamDetailSection createTeamDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
1963 TeamDetailSection section = new TeamDetailSection(this, conversation, parentElement, null, style);
1964 addAndAdaptSection(parentElement, section);
1965 return section;
1966 }
1967
1968 public PersonDetailSection createPersonDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
1969 PersonDetailSection section = new PersonDetailSection(this, conversation, parentElement, null, style);
1970 addAndAdaptSection(parentElement, section);
1971 return section;
1972 }
1973
1974 public DescriptionDetailSection createDescriptionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1975 DescriptionDetailSection section = new DescriptionDetailSection(this, conversation, parentElement, selectionProvider, style);
1976 addAndAdaptSection(parentElement, section);
1977 return section;
1978 }
1979
1980 public DescriptionElementDetailSection createDescriptionElementDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1981 DescriptionElementDetailSection section = new DescriptionElementDetailSection(this, conversation, parentElement, selectionProvider, style);
1982 addAndAdaptSection(parentElement, section);
1983 return section;
1984 }
1985
1986 public ParsingMessagesSection createParsingMessagesSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
1987 ParsingMessagesSection section = new ParsingMessagesSection(this, conversation, parentElement, selectionProvider, style);
1988 addAndAdaptSection(parentElement, section);
1989 return section;
1990 }
1991
1992
1993
1994 public NonViralNameDetailSection createNonViralNameDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, boolean nameChoosable, int style){
1995 NonViralNameDetailSection section = new NonViralNameDetailSection(this, conversation, parentElement, selectionProvider, nameChoosable, style);
1996 addAndAdaptSection(parentElement, section);
1997 return section;
1998 }
1999
2000 public MediaDetailsSection createMediaDetailsSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2001 MediaDetailsSection section = new MediaDetailsSection(this, conversation, parentElement, selectionProvider, style);
2002 addAndAdaptSection(parentElement, section);
2003 return section;
2004 }
2005
2006 public FieldUnitFacadeDetailSection createFieldUnitFacadeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2007 FieldUnitFacadeDetailSection section = new FieldUnitFacadeDetailSection(this, conversation, parentElement, selectionProvider, style);
2008 addAndAdaptSection(parentElement, section);
2009 return section;
2010 }
2011
2012 public GatheringEventDetailSection createGatheringEventDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2013 GatheringEventDetailSection section = new GatheringEventDetailSection(this, conversation, parentElement, selectionProvider, style);
2014 addAndAdaptSection(parentElement, section);
2015 return section;
2016 }
2017
2018 public DerivedUnitBaseDetailSection createDerivedUnitBaseDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2019 DerivedUnitBaseDetailSection section = new DerivedUnitBaseDetailSection(this, conversation, parentElement, selectionProvider, style);
2020 addAndAdaptSection(parentElement, section);
2021 return section;
2022 }
2023
2024 public DerivedUnitTypeDesignationSection createDerivedUnitTypeDesignationSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2025 DerivedUnitTypeDesignationSection section = new DerivedUnitTypeDesignationSection(this, conversation, parentElement, style);
2026 addAndAdaptSection(parentElement, section);
2027 return section;
2028 }
2029
2030 public TaxonAssociationDetailSection createTaxonAssociationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2031 TaxonAssociationDetailSection section = new TaxonAssociationDetailSection(this, conversation, parentElement, selectionProvider, style);
2032 addAndAdaptSection(parentElement, section);
2033 return section;
2034 }
2035
2036 public OriginalLabelDataSection createOriginalLabelDataSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2037 OriginalLabelDataSection section = new OriginalLabelDataSection(this, conversation, parentElement, selectionProvider, style);
2038 addAndAdaptSection(parentElement, section);
2039 return section;
2040 }
2041
2042 public NaturalLanguageSection createNaturalLanguageSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2043 NaturalLanguageSection section = new NaturalLanguageSection(this, conversation, parentElement, selectionProvider, style);
2044 addAndAdaptSection(parentElement, section);
2045 return section;
2046 }
2047
2048 public FeatureDistributionDetailSection createFeatureDistributionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2049 FeatureDistributionDetailSection section = new FeatureDistributionDetailSection(this, conversation, parentElement, selectionProvider, style);
2050 addAndAdaptSection(parentElement, section);
2051 return section;
2052 }
2053
2054 public ClassificationDetailSection createClassificationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2055 ClassificationDetailSection section = new ClassificationDetailSection(this, conversation, parentElement, selectionProvider, style);
2056 addAndAdaptSection(parentElement, section);
2057 return section;
2058 }
2059
2060 public TaxonNodeDetailSection createTaxonNodeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2061 TaxonNodeDetailSection section = new TaxonNodeDetailSection(this, conversation, parentElement, selectionProvider, style);
2062 addAndAdaptSection(parentElement, section);
2063 return section;
2064 }
2065
2066 public PolytomousKeyDetailSection createPolytomousKeyDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2067 PolytomousKeyDetailSection section = new PolytomousKeyDetailSection(this, conversation, parentElement, selectionProvider, style);
2068 addAndAdaptSection(parentElement, section);
2069 return section;
2070 }
2071
2072 public PolytomousKeyNodeDetailSection createPolytomousKeyNodeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2073 PolytomousKeyNodeDetailSection section = new PolytomousKeyNodeDetailSection(this, conversation, parentElement, selectionProvider, style);
2074 addAndAdaptSection(parentElement, section);
2075 return section;
2076 }
2077
2078 public InstitutionDetailSection createInstitutionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2079 InstitutionDetailSection section = new InstitutionDetailSection(this, conversation, parentElement, selectionProvider, style);
2080 addAndAdaptSection(parentElement, section);
2081 return section;
2082 }
2083
2084 public FieldUnitFacadeGeneralDetailSection createFieldUnitFacadeGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2085 FieldUnitFacadeGeneralDetailSection section = new FieldUnitFacadeGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2086 addAndAdaptSection(parentElement, section);
2087 return section;
2088 }
2089
2090 public DerivedUnitGeneralDetailSection createDerivedUnitGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2091 DerivedUnitGeneralDetailSection section = new DerivedUnitGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2092 addAndAdaptSection(parentElement, section);
2093 return section;
2094 }
2095
2096 public PreservedSpecimenGeneralDetailSection createPreservedSpecimenGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2097 PreservedSpecimenGeneralDetailSection section = new PreservedSpecimenGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2098 addAndAdaptSection(parentElement, section);
2099 return section;
2100 }
2101
2102 public TissueSampleGeneralDetailSection createTissueSampleGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2103 TissueSampleGeneralDetailSection section = new TissueSampleGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2104 addAndAdaptSection(parentElement, section);
2105 return section;
2106 }
2107
2108 public DnaSampleGeneralDetailSection createDnaSampleGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2109 DnaSampleGeneralDetailSection section = new DnaSampleGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2110 addAndAdaptSection(parentElement, section);
2111 return section;
2112 }
2113
2114 public DnaSamplePreparationPreservationSection createDnaSamplePreparationPreservationSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2115 DnaSamplePreparationPreservationSection section = new DnaSamplePreparationPreservationSection(this, conversation, parentElement, selectionProvider, style);
2116 addAndAdaptSection(parentElement, section);
2117 return section;
2118 }
2119
2120 public DnaQualityDetailSection createDnaQualityDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2121 DnaQualityDetailSection section = new DnaQualityDetailSection(this, conversation, parentElement, selectionProvider, style);
2122 addAndAdaptSection(parentElement, section);
2123 return section;
2124 }
2125
2126 public SequenceGeneralDetailSection createSequenceGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2127 SequenceGeneralDetailSection section = new SequenceGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2128 addAndAdaptSection(parentElement, section);
2129 return section;
2130 }
2131
2132 public SequenceContigFileCollectionDetailSection createSequenceContigFileCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2133 SequenceContigFileCollectionDetailSection section = new SequenceContigFileCollectionDetailSection(this, conversation, parentElement, style);
2134 addAndAdaptSection(parentElement, section);
2135 return section;
2136 }
2137
2138 public SingleReadPherogramCollectionDetailSection createSingleReadPherogramCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2139 SingleReadPherogramCollectionDetailSection section = new SingleReadPherogramCollectionDetailSection(this, conversation, parentElement, style);
2140 addAndAdaptSection(parentElement, section);
2141 return section;
2142 }
2143
2144 public SequenceReferenceCollectionDetailSection createSequenceReferenceCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2145 SequenceReferenceCollectionDetailSection section = new SequenceReferenceCollectionDetailSection(this, conversation, parentElement, style);
2146 addAndAdaptSection(parentElement, section);
2147 return section;
2148 }
2149
2150 public SingleReadGeneralDetailSection createSingleReadGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2151 SingleReadGeneralDetailSection section = new SingleReadGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2152 addAndAdaptSection(parentElement, section);
2153 return section;
2154 }
2155
2156 public AmplificationGeneralDetailSection createAmplificationGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2157 AmplificationGeneralDetailSection section = new AmplificationGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2158 addAndAdaptSection(parentElement, section);
2159 return section;
2160 }
2161
2162 public AmplificationPrimerDetailSection createAmplificationPrimerDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2163 AmplificationPrimerDetailSection section = new AmplificationPrimerDetailSection(this, conversation, parentElement, selectionProvider, style);
2164 addAndAdaptSection(parentElement, section);
2165 return section;
2166 }
2167
2168 public AmplificationCloningDetailSection createAmplificationCloningDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2169 AmplificationCloningDetailSection section = new AmplificationCloningDetailSection(this, conversation, parentElement, selectionProvider, style);
2170 addAndAdaptSection(parentElement, section);
2171 return section;
2172 }
2173
2174 public AmplificationGelPhotoCollectionDetailSection createAmplificationGelPhotoCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2175 AmplificationGelPhotoCollectionDetailSection section = new AmplificationGelPhotoCollectionDetailSection(this, conversation, parentElement, style);
2176 addAndAdaptSection(parentElement, section);
2177 return section;
2178 }
2179
2180 public MediaSpecimenGeneralDetailSection createMediaSpecimenGeneralDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2181 MediaSpecimenGeneralDetailSection section = new MediaSpecimenGeneralDetailSection(this, conversation, parentElement, selectionProvider, style);
2182 addAndAdaptSection(parentElement, section);
2183 return section;
2184 }
2185
2186 public HybridDetailSection createHybridDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2187 HybridDetailSection section = new HybridDetailSection(this, conversation, parentElement, selectionProvider, style);
2188 addAndAdaptSection(parentElement, section);
2189 return section;
2190 }
2191
2192 public UserDetailSection createUserDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2193 UserDetailSection section = new UserDetailSection(this, conversation, parentElement, selectionProvider, style);
2194 addAndAdaptSection(parentElement, section);
2195 return section;
2196 }
2197
2198 public GroupDetailSection createGroupDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2199 GroupDetailSection section = new GroupDetailSection(this, conversation, parentElement, selectionProvider, style);
2200 addAndAdaptSection(parentElement, section);
2201 return section;
2202 }
2203
2204 public DeterminationDetailSection createDeterminationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2205 DeterminationDetailSection section = new DeterminationDetailSection(this, conversation, parentElement, selectionProvider, style);
2206 addAndAdaptSection(parentElement, section);
2207 return section;
2208 }
2209
2210 public SampleDesignationDetailSection createSampleDesignationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2211 SampleDesignationDetailSection section = new SampleDesignationDetailSection(this, conversation, parentElement, selectionProvider, style);
2212 addAndAdaptSection(parentElement, section);
2213 return section;
2214 }
2215
2216 public TaxonRelationshipDetailSection createTaxonRelationshipDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2217 TaxonRelationshipDetailSection section = new TaxonRelationshipDetailSection(this, conversation, parentElement, selectionProvider, style, true);
2218 addAndAdaptSection(parentElement, section);
2219 return section;
2220 }
2221
2222 public ReferencedEntityDetailSection createReferencedEntityDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2223 ReferencedEntityDetailSection section = new ReferencedEntityDetailSection(this, conversation, parentElement, selectionProvider, style);
2224 addAndAdaptSection(parentElement, section);
2225 return section;
2226 }
2227
2228 public TermVocabularyDetailSection createTermVocabularyDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2229 TermVocabularyDetailSection section = new TermVocabularyDetailSection(this, conversation, parentElement, selectionProvider, style);
2230 addAndAdaptSection(parentElement, section);
2231 return section;
2232 }
2233
2234 public GatheringEventDetailSection createGatheringSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2235 GatheringEventDetailSection section = new GatheringEventDetailSection(this, conversation, parentElement, selectionProvider, style);
2236 addAndAdaptSection(parentElement, section);
2237 return section;
2238 }
2239
2240 public NamedAreaDetailSection createNamedAreaDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2241 NamedAreaDetailSection section = new NamedAreaDetailSection(this, conversation, parentElement, selectionProvider, style);
2242 addAndAdaptSection(parentElement, section);
2243 return section;
2244 }
2245
2246 public UseRecordDetailSection createUseRecordDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style){
2247 UseRecordDetailSection section = new UseRecordDetailSection(this, conversation, parentElement, selectionProvider, style);
2248 addAndAdaptSection(parentElement, section);
2249 return section;
2250 }
2251
2252 private void addAndAdaptSection(ICdmFormElement parentElement, AbstractFormSection<?> section) {
2253 parentElement.addElement(section);
2254 adapt(section);
2255 }
2256
2257 //--------DetailElements------------
2258
2259 public UseRecordDetailElement createUseRecordDetailElement(ICdmFormElement parentElement){
2260 UseRecordDetailElement element = new UseRecordDetailElement(this, parentElement);
2261 addAndAdaptElement(parentElement, element);
2262 return element;
2263 }
2264
2265 public DefinedTermDetailElement<NamedAreaLevel> createNamedAreaLevelElement(ICdmFormElement parentElement){
2266 DefinedTermDetailElement<NamedAreaLevel> element = new DefinedTermDetailElement<NamedAreaLevel>(this, parentElement);
2267 addAndAdaptElement(parentElement, element);
2268 return element;
2269 }
2270
2271 public eu.etaxonomy.taxeditor.ui.section.vocabulary.NamedAreaDetailElement createNamedAreaDetailElement(ICdmFormElement parentElement){
2272 eu.etaxonomy.taxeditor.ui.section.vocabulary.NamedAreaDetailElement element = new eu.etaxonomy.taxeditor.ui.section.vocabulary.NamedAreaDetailElement(this, parentElement);
2273 addAndAdaptElement(parentElement, element);
2274 return element;
2275 }
2276
2277 public TermVocabularyDetailElement createTermVocabularyDetailElement(ICdmFormElement parentElement){
2278 TermVocabularyDetailElement element = new TermVocabularyDetailElement(this, parentElement);
2279 addAndAdaptElement(parentElement, element);
2280 return element;
2281 }
2282
2283 public ReferenceEntityDetailElement createReferenceEntityDetailElement(ICdmFormElement parentElement){
2284 ReferenceEntityDetailElement element = new ReferenceEntityDetailElement(this, parentElement);
2285 addAndAdaptElement(parentElement, element);
2286 return element;
2287 }
2288 public OriginalSourceElement createOriginalSourceElement(ICdmFormElement parentElement, CdmBase cdmEntity, String label){
2289 OriginalSourceElement element = new OriginalSourceElement(this, parentElement, cdmEntity, label);
2290 addAndAdaptElement(parentElement, element);
2291 return element;
2292 }
2293
2294 public SecundumSourceElement createSecundumSourceElement(ICdmFormElement parentElement, CdmBase cdmEntity, String label){
2295 SecundumSourceElement element = new SecundumSourceElement(this, parentElement, cdmEntity, label);
2296 addAndAdaptElement(parentElement, element);
2297 return element;
2298 }
2299 public NomenclaturalSourceElement createNomenclaturalSourceElement(ICdmFormElement parentElement, CdmBase cdmEntity, String label){
2300 NomenclaturalSourceElement element = new NomenclaturalSourceElement(this, parentElement, cdmEntity, label);
2301 addAndAdaptElement(parentElement, element);
2302 return element;
2303 }
2304
2305 public TaxonRelationshipDetailElement createTaxonRelationshipDetailElement(ICdmFormElement parentElement){
2306 TaxonRelationshipDetailElement element = new TaxonRelationshipDetailElement(this, parentElement);
2307 addAndAdaptElement(parentElement, element);
2308 return element;
2309 }
2310
2311 public GrantedAuthorityDetailElement createGrantedAuthorityDetailElement(ICdmFormElement parentElement){
2312 GrantedAuthorityDetailElement element = new GrantedAuthorityDetailElement(this, parentElement);
2313 addAndAdaptElement(parentElement, element);
2314 return element;
2315 }
2316
2317 public GroupDetailElement createGroupDetailElement(ICdmFormElement parentElement){
2318 GroupDetailElement element = new GroupDetailElement(this, parentElement);
2319 addAndAdaptElement(parentElement, element);
2320 return element;
2321 }
2322
2323 public UserDetailElement createUserDetailElement(ICdmFormElement parentElement){
2324 UserDetailElement element = new UserDetailElement(this, parentElement);
2325 addAndAdaptElement(parentElement, element);
2326 return element;
2327 }
2328
2329 public HybridDetailElement createHybridDetailElement(ICdmFormElement parentElement){
2330 HybridDetailElement element = new HybridDetailElement(this, parentElement);
2331 addAndAdaptElement(parentElement, element);
2332 return element;
2333 }
2334
2335 public InstitutionDetailElement createInstitutionDetailElement(ICdmFormElement parentElement){
2336 InstitutionDetailElement element = new InstitutionDetailElement(this, parentElement);
2337 addAndAdaptElement(parentElement, element);
2338 return element;
2339 }
2340
2341 public PolytomousKeyNodeDetailElement createPolytomousKeyNodeDetailElement(ICdmFormElement parentElement){
2342 PolytomousKeyNodeDetailElement element = new PolytomousKeyNodeDetailElement(this, parentElement);
2343 addAndAdaptElement(parentElement, element);
2344 return element;
2345 }
2346
2347 public PolytomousKeyDetailElement createPolytomousKeyDetailElement(ICdmFormElement parentElement){
2348 PolytomousKeyDetailElement element = new PolytomousKeyDetailElement(this, parentElement);
2349 addAndAdaptElement(parentElement, element);
2350 return element;
2351 }
2352
2353 public CollectionDetailElement createCollectionDetailElement(ICdmFormElement parentElement){
2354 CollectionDetailElement element = new CollectionDetailElement(this, parentElement);
2355 addAndAdaptElement(parentElement, element);
2356 return element;
2357 }
2358
2359 public TaxonNodeAgentRelationCollectionSection createTaxonNodeAgentRelationCollectionElement(ICdmFormElement parentElement, ConversationHolder conversation, int style){
2360 TaxonNodeAgentRelationCollectionSection element = new TaxonNodeAgentRelationCollectionSection(this, conversation, parentElement, style);
2361 adapt(element);
2362 parentElement.addElement(element);
2363
2364 return element;
2365 }
2366
2367 public TaxonNodeDetailElement createTaxonNodeDetailElement(ICdmFormElement parentElement, boolean createNew){
2368 TaxonNodeDetailElement element = new TaxonNodeDetailElement(this, parentElement, createNew);
2369 addAndAdaptElement(parentElement, element);
2370 return element;
2371 }
2372
2373 public ClassificationDetailElement createClassificationDetailElement(ICdmFormElement parentElement){
2374 ClassificationDetailElement element = new ClassificationDetailElement(this, parentElement);
2375 addAndAdaptElement(parentElement, element);
2376 return element;
2377 }
2378
2379 public CloneClassificationDetailElement createCloneClassificationDetailElement(ICdmFormElement parentElement){
2380 CloneClassificationDetailElement element = new CloneClassificationDetailElement(this, parentElement);
2381 addAndAdaptElement(parentElement, element);
2382 return element;
2383 }
2384
2385 public FeatureDistributionDetailElement createFeatureDistributionDetailElement(ICdmFormElement parentElement){
2386 FeatureDistributionDetailElement element = new FeatureDistributionDetailElement(this, parentElement);
2387 addAndAdaptElement(parentElement, element);
2388 return element;
2389 }
2390
2391 public NaturalLanguageDetailElement createNaturalLanguageDetailElement(ICdmFormElement parentElement){
2392 NaturalLanguageDetailElement element = new NaturalLanguageDetailElement(this, parentElement);
2393 addAndAdaptElement(parentElement, element);
2394 return element;
2395 }
2396
2397 public NonViralNameDetailElement createNonViralNameDetailElement(ICdmFormElement parentElement){
2398 NonViralNameDetailElement element = new NonViralNameDetailElement(this, parentElement);
2399 addAndAdaptElement(parentElement, element);
2400 return element;
2401 }
2402
2403 public DescriptionElementDetailElement createDescriptionElementDetailElement(ICdmFormElement parentElement, int style){
2404 DescriptionElementDetailElement element = new DescriptionElementDetailElement(this, parentElement, style);
2405 addAndAdaptElement(parentElement, element);
2406 return element;
2407 }
2408
2409 public DescriptionDetailElement createDescriptionDetailElement(ICdmFormElement parentElement, int style){
2410 DescriptionDetailElement element = new DescriptionDetailElement(this, parentElement, style);
2411 addAndAdaptElement(parentElement, element);
2412 return element;
2413 }
2414
2415 public PersonDetailElement createPersonDetailElement(ICdmFormElement parentElement, int style){
2416 PersonDetailElement element = new PersonDetailElement(this, parentElement, style);
2417 addAndAdaptElement(parentElement, element);
2418 return element;
2419 }
2420
2421 public TeamDetailElement createTeamDetailElement(ICdmFormElement parentElement, int style, boolean isNomenclatural){
2422 TeamDetailElement element = new TeamDetailElement(this, parentElement, style, isNomenclatural);
2423 addAndAdaptElement(parentElement, element);
2424 return element;
2425 }
2426
2427 public AuthorshipDetailElement createAuthorshipDetailElement(ICdmFormElement parentElement, int style){
2428 AuthorshipDetailElement element = new AuthorshipDetailElement(this, parentElement, style);
2429 addAndAdaptElement(parentElement, element);
2430 return element;
2431 }
2432
2433 public TaxonBaseDetailElement createTaxonBaseDetailElement(ICdmFormElement parentElement, int style){
2434 TaxonBaseDetailElement element = new TaxonBaseDetailElement(this, parentElement, style);
2435 addAndAdaptElement(parentElement, element);
2436 return element;
2437 }
2438
2439 public NameDetailElement createNameDetailElement(ICdmFormElement parentElement, int style){
2440 NameDetailElement element = new NameDetailElement(this, parentElement, style);
2441 addAndAdaptElement(parentElement, element);
2442 return element;
2443 }
2444
2445 public ReferenceDetailElement createReferenceDetailElement(ICdmFormElement parentElement, int style){
2446 ReferenceDetailElement element = new ReferenceDetailElement(this, parentElement, style);
2447 addAndAdaptElement(parentElement, element);
2448 return element;
2449 }
2450
2451 public NomenclaturalReferenceDetailElement createNomenclaturalReferenceDetailElement(ICdmFormElement parentElement, int style){
2452 NomenclaturalReferenceDetailElement element = new NomenclaturalReferenceDetailElement(this, parentElement, style);
2453 addAndAdaptElement(parentElement, element);
2454 return element;
2455 }
2456
2457
2458 public FieldUnitFacadeGeneralDetailElement createFieldUnitFacadeGeneralDetailElement(ICdmFormElement parentElement){
2459 FieldUnitFacadeGeneralDetailElement element = new FieldUnitFacadeGeneralDetailElement(this, parentElement);
2460 addAndAdaptElement(parentElement, element);
2461 return element;
2462 }
2463
2464 public DerivedUnitGeneralDetailElement createDerivedUnitGeneralDetailElement(ICdmFormElement parentElement){
2465 DerivedUnitGeneralDetailElement element = new DerivedUnitGeneralDetailElement(this, parentElement);
2466 addAndAdaptElement(parentElement, element);
2467 return element;
2468 }
2469
2470 public TaxonAssociationDetailElement createTaxonAssociationDetailElement(ICdmFormElement parentElement){
2471 TaxonAssociationDetailElement element = new TaxonAssociationDetailElement(this, parentElement);
2472 addAndAdaptElement(parentElement, element);
2473 return element;
2474 }
2475
2476 public PreservedSpecimenGeneralDetailElement createPreservedSpecimenGeneralDetailElement(ICdmFormElement parentElement){
2477 PreservedSpecimenGeneralDetailElement element = new PreservedSpecimenGeneralDetailElement(this, parentElement);
2478 addAndAdaptElement(parentElement, element);
2479 return element;
2480 }
2481
2482 public TissueSampleGeneralDetailElement createTissueSampleGeneralDetailElement(ICdmFormElement parentElement){
2483 TissueSampleGeneralDetailElement element = new TissueSampleGeneralDetailElement(this, parentElement);
2484 addAndAdaptElement(parentElement, element);
2485 return element;
2486 }
2487
2488 public DnaSampleGeneralDetailElement createDnaSampleGeneralDetailElement(ICdmFormElement parentElement){
2489 DnaSampleGeneralDetailElement element = new DnaSampleGeneralDetailElement(this, parentElement);
2490 addAndAdaptElement(parentElement, element);
2491 return element;
2492 }
2493
2494 public DnaSamplePreparationPreservationDetailElement createDnaSamplePreparationPreservationDetailElement(ICdmFormElement parentElement){
2495 DnaSamplePreparationPreservationDetailElement element = new DnaSamplePreparationPreservationDetailElement(this, parentElement);
2496 addAndAdaptElement(parentElement, element);
2497 return element;
2498 }
2499
2500 public DnaQualityDetailElement createDnaQualityDetailElement(ICdmFormElement parentElement){
2501 DnaQualityDetailElement element = new DnaQualityDetailElement(this, parentElement);
2502 addAndAdaptElement(parentElement, element);
2503 return element;
2504 }
2505
2506 public SequenceGeneralDetailElement createSequenceGeneralDetailElement(ICdmFormElement parentElement){
2507 SequenceGeneralDetailElement element = new SequenceGeneralDetailElement(this, parentElement);
2508 addAndAdaptElement(parentElement, element);
2509 return element;
2510 }
2511
2512 public SingleReadGeneralDetailElement createSingleReadGeneralDetailElement(ICdmFormElement parentElement){
2513 SingleReadGeneralDetailElement element = new SingleReadGeneralDetailElement(this, parentElement);
2514 addAndAdaptElement(parentElement, element);
2515 return element;
2516 }
2517
2518 public PrimerGeneralDetailElement createPrimerGeneralDetailElement(ICdmFormElement parentElement){
2519 PrimerGeneralDetailElement element = new PrimerGeneralDetailElement(this, parentElement);
2520 addAndAdaptElement(parentElement, element);
2521 return element;
2522 }
2523
2524 public AmplificationGeneralDetailElement createAmplificationGeneralDetailElement(ICdmFormElement parentElement){
2525 AmplificationGeneralDetailElement element = new AmplificationGeneralDetailElement(this, parentElement);
2526 addAndAdaptElement(parentElement, element);
2527 return element;
2528 }
2529
2530 public AmplificationPrimerDetailElement createAmplificationPrimerDetailElement(ICdmFormElement parentElement){
2531 AmplificationPrimerDetailElement element = new AmplificationPrimerDetailElement(this, parentElement);
2532 addAndAdaptElement(parentElement, element);
2533 return element;
2534 }
2535
2536 public AmplificationCloningDetailElement createAmplificationCloningDetailElement(ICdmFormElement parentElement){
2537 AmplificationCloningDetailElement element = new AmplificationCloningDetailElement(this, parentElement);
2538 addAndAdaptElement(parentElement, element);
2539 return element;
2540 }
2541
2542 public AmplificationGelPhotoDetailElement createAmplificationGelPhotoDetailElement(ICdmFormElement parentElement){
2543 AmplificationGelPhotoDetailElement element = new AmplificationGelPhotoDetailElement(this, parentElement);
2544 addAndAdaptElement(parentElement, element);
2545 return element;
2546 }
2547
2548 public MediaSpecimenGeneralDetailElement createMediaSpecimenGeneralDetailElement(ICdmFormElement parentElement){
2549 MediaSpecimenGeneralDetailElement element = new MediaSpecimenGeneralDetailElement(this, parentElement);
2550 addAndAdaptElement(parentElement, element);
2551 return element;
2552 }
2553
2554 public MediaDetailElement createMediaDetailElement(ICdmFormElement parentElement){
2555 MediaDetailElement mediaDetailElement = new MediaDetailElement(this, parentElement);
2556 addAndAdaptElement(parentElement, mediaDetailElement);
2557 return mediaDetailElement;
2558 }
2559
2560 public GatheringEventDetailElement createGatheringEventDetailElement(ICdmFormElement parentElement) {
2561 GatheringEventDetailElement element = new GatheringEventDetailElement(this, parentElement);
2562 addAndAdaptElement(parentElement, element);
2563 return element;
2564 }
2565
2566 public FieldUnitFacadeDetailElement createFieldUnitFacadeDetailElement(ICdmFormElement parentElement) {
2567 FieldUnitFacadeDetailElement element = new FieldUnitFacadeDetailElement(this, parentElement);
2568 addAndAdaptElement(parentElement, element);
2569 return element;
2570 }
2571
2572 public DerivedUnitBaseDetailElement createDerivedUnitBaseDetailElement(ICdmFormElement parentElement) {
2573 DerivedUnitBaseDetailElement element = new DerivedUnitBaseDetailElement(this, parentElement);
2574 addAndAdaptElement(parentElement, element);
2575 return element;
2576 }
2577
2578 public OriginalLabelDataElement createOriginalLabelDataElement(ICdmFormElement parentElement) {
2579 OriginalLabelDataElement element = new OriginalLabelDataElement(this, parentElement);
2580 addAndAdaptElement(parentElement, element);
2581 return element;
2582 }
2583
2584 public PreservedSpecimenDetailElement createPreservedSpecimenDetailElement(ICdmFormElement parentElement) {
2585 PreservedSpecimenDetailElement element = new PreservedSpecimenDetailElement(this, parentElement);
2586 addAndAdaptElement(parentElement, element);
2587 return element;
2588 }
2589
2590 public DeterminationDetailElement createDeterminationDetailElement(ICdmFormElement parentElement) {
2591 DeterminationDetailElement element = new DeterminationDetailElement(this, parentElement);
2592 addAndAdaptElement(parentElement, element);
2593 return element;
2594 }
2595
2596 public SampleDesignationDetailElement createSampleDesignationDetailElement(ICdmFormElement parentElement) {
2597 SampleDesignationDetailElement element = new SampleDesignationDetailElement(this, parentElement);
2598 addAndAdaptElement(parentElement, element);
2599 return element;
2600 }
2601
2602 /**
2603 * @param parentElement
2604 * @param element
2605 */
2606 private void addAndAdaptElement(ICdmFormElement parentElement, AbstractCdmDetailElement<?> element) {
2607 adapt(element);
2608 parentElement.addElement(element);
2609 }
2610
2611 //--------EntityCollectionSection----------
2612 public TeamMemberSection createTeamMemberSection(ConversationHolder conversation, ICdmFormElement parentElement, int style, boolean isNomenclatural){
2613 TeamMemberSection section = new TeamMemberSection(this, conversation, parentElement, style, isNomenclatural);
2614 addAndAdaptSection(parentElement, section);
2615 return section;
2616 }
2617
2618 public InapplicableIfEntityCollectionSection createInapplicableIfEntityCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2619 InapplicableIfEntityCollectionSection section = new InapplicableIfEntityCollectionSection(this, conversation, parentElement, style);
2620 addAndAdaptSection(parentElement, section);
2621 return section;
2622 }
2623
2624 public OnlyApplicableIfEntityCollectionSection createOnlyApplicableIfEntityCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2625 OnlyApplicableIfEntityCollectionSection section = new OnlyApplicableIfEntityCollectionSection(this, conversation, parentElement, style);
2626 addAndAdaptSection(parentElement, section);
2627 return section;
2628 }
2629
2630 public InapplicableIfEntityCollectionSectionForNode createInapplicableIfEntityCollectionSectionForNode(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2631 InapplicableIfEntityCollectionSectionForNode section = new InapplicableIfEntityCollectionSectionForNode(this, conversation, parentElement, style);
2632 addAndAdaptSection(parentElement, section);
2633 return section;
2634 }
2635
2636 public OnlyApplicableIfEntityCollectionSectionForNode createOnlyApplicableIfEntityCollectionSectionForNode(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2637 OnlyApplicableIfEntityCollectionSectionForNode section = new OnlyApplicableIfEntityCollectionSectionForNode(this, conversation, parentElement, style);
2638 addAndAdaptSection(parentElement, section);
2639 return section;
2640 }
2641
2642 public AnnotationSection createAnnotationSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2643 AnnotationSection section = new AnnotationSection(this, conversation, parentElement, style);
2644 addAndAdaptSection(parentElement, section);
2645 return section;
2646 }
2647
2648 public CreditSection createCreditSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2649 CreditSection section = new CreditSection(this, conversation, parentElement, style);
2650 addAndAdaptSection(parentElement, section);
2651 return section;
2652 }
2653 public DescriptionElementSourceSection createDescriptionElementSourceSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2654 DescriptionElementSourceSection section = new DescriptionElementSourceSection(this, conversation, parentElement, style);
2655 addAndAdaptSection(parentElement, section);
2656 return section;
2657 }
2658 public DescriptionElementSourceSection createDescriptionElementSourceSection(ConversationHolder conversation, ICdmFormElement parentElement, Reference defaultSource, int style){
2659 DescriptionElementSourceSection section = new DescriptionElementSourceSection(this, conversation, parentElement, defaultSource, style);
2660 addAndAdaptSection(parentElement, section);
2661 return section;
2662 }
2663
2664 public ExtensionSection createExtensionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2665 ExtensionSection section = new ExtensionSection(this, conversation, parentElement, style);
2666 addAndAdaptSection(parentElement, section);
2667 return section;
2668 }
2669
2670 public MarkerSection createMarkerSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2671 MarkerSection section = new MarkerSection(this, conversation, parentElement, style);
2672 addAndAdaptSection(parentElement, section);
2673 return section;
2674 }
2675
2676 public MediaSection createMediaSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2677 MediaSection section = new MediaSection(this, conversation, parentElement, style);
2678 addAndAdaptSection(parentElement, section);
2679 return section;
2680 }
2681
2682 public DescriptionElementMediaSection createDescriptionElementMediaSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2683 DescriptionElementMediaSection section = new DescriptionElementMediaSection(this, conversation, parentElement, style);
2684 addAndAdaptSection(parentElement, section);
2685 return section;
2686 }
2687
2688 public MediaRepresentationSection createMediaRepresentationSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2689 MediaRepresentationSection section = new MediaRepresentationSection(this, conversation, parentElement, style);
2690 addAndAdaptSection(parentElement, section);
2691 return section;
2692 }
2693
2694 public MediaRepresentationPartSection createMediaRepresentationPartSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2695 MediaRepresentationPartSection section = new MediaRepresentationPartSection(this, conversation, parentElement, style);
2696 addAndAdaptSection(parentElement, section);
2697 return section;
2698 }
2699
2700 public ModifierSection createModifierSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2701 ModifierSection section = new ModifierSection(this, conversation, parentElement, style);
2702 addAndAdaptSection(parentElement, section);
2703 return section;
2704 }
2705
2706 public NomenclaturalStatusSection createNomenclaturalStatusSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2707 NomenclaturalStatusSection section = new NomenclaturalStatusSection(this, conversation, parentElement, style);
2708 addAndAdaptSection(parentElement, section);
2709 return section;
2710 }
2711
2712 public NameRelationshipDetailSection createNameRelationshipDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2713 NameRelationshipDetailSection section = new NameRelationshipDetailSection(this, conversation, parentElement, style);
2714 addAndAdaptSection(parentElement, section);
2715 return section;
2716 }
2717
2718 // public ProtologueSection createProtologueSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2719 // ProtologueSection section = new ProtologueSection(this, conversation, parentElement, style);
2720 // addAndAdaptSection(parentElement, section);
2721 // return section;
2722 // }
2723 public ExternalLinksSection createExternalLinksSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2724 ExternalLinksSection section = new ExternalLinksSection(this, conversation, parentElement, style);
2725 addAndAdaptSection(parentElement, section);
2726 return section;
2727 }
2728
2729 public ExternalLinksSection createExternalLinksSection(ConversationHolder conversation, ICdmFormElement parentElement, String label, int style){
2730 ExternalLinksSection section = new ExternalLinksSection(this, conversation, parentElement, true, label, style);
2731 addAndAdaptSection(parentElement, section);
2732 return section;
2733 }
2734
2735 public ExternalLinksSection createExternalLinksSection(ConversationHolder conversation, ICdmFormElement parentElement, String label, boolean isWithTypeAndDesc, int style){
2736 ExternalLinksSection section = new ExternalLinksSection(this, conversation, parentElement, isWithTypeAndDesc, label, style);
2737 addAndAdaptSection(parentElement, section);
2738 return section;
2739 }
2740
2741 public RightsSection createRightsSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2742 RightsSection section = new RightsSection(this, conversation, parentElement, style);
2743
2744 addAndAdaptSection(parentElement, section);
2745 return section;
2746 }
2747
2748 public SourceSection createSourceSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2749 SourceSection section = new SourceSection(this, conversation, parentElement, style);
2750 addAndAdaptSection(parentElement, section);
2751 return section;
2752 }
2753
2754 public ScopeSection createScopeSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2755 ScopeSection section = new ScopeSection(this, conversation, parentElement, style);
2756 addAndAdaptSection(parentElement, section);
2757 return section;
2758 }
2759
2760 public DescriptionSourceSection createDescriptionSourceSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2761 DescriptionSourceSection section = new DescriptionSourceSection(this, conversation, parentElement, style);
2762 addAndAdaptSection(parentElement, section);
2763 return section;
2764 }
2765
2766 public TypeDesignationSection createTypeDesignationSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2767 TypeDesignationSection section = new TypeDesignationSection(this, conversation, parentElement, style);
2768 addAndAdaptSection(parentElement, section);
2769 return section;
2770 }
2771
2772 public StateDataSection createStateDataSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2773 StateDataSection section = new StateDataSection(this, conversation, parentElement, style);
2774 addAndAdaptSection(parentElement, section);
2775 return section;
2776 }
2777
2778 public StatisticalMeasurementValueSection createStatisticalMeasurementValueSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2779 StatisticalMeasurementValueSection section = new StatisticalMeasurementValueSection(this, conversation, parentElement, style);
2780 addAndAdaptSection(parentElement, section);
2781 return section;
2782 }
2783
2784 public DescribedSpecimenSection createDescribedSpecimenSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2785 DescribedSpecimenSection section = new DescribedSpecimenSection(this, conversation, parentElement, style);
2786 addAndAdaptSection(parentElement, section);
2787 return section;
2788 }
2789
2790 public StateVocabularyCollectionSection createStateVocabulariesSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2791 StateVocabularyCollectionSection section = new StateVocabularyCollectionSection(this, conversation, parentElement, style);
2792 addAndAdaptSection(parentElement, section);
2793 return section;
2794 }
2795
2796 public StateVocabularyDtoCollectionSection createStateVocabulariesDtoSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2797 StateVocabularyDtoCollectionSection section = new StateVocabularyDtoCollectionSection(this, conversation, parentElement, style);
2798 addAndAdaptSection(parentElement, section);
2799 return section;
2800 }
2801
2802 public RecommendedModifierVocabulariesCollectionSection createRecommendedModifierVocabulariesCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2803 RecommendedModifierVocabulariesCollectionSection section = new RecommendedModifierVocabulariesCollectionSection(this, conversation, parentElement, style);
2804 addAndAdaptSection(parentElement, section);
2805 return section;
2806 }
2807 public RecommendedModifierVocabulariesDtoCollectionSection createRecommendedModifierVocabulariesDtoCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2808 RecommendedModifierVocabulariesDtoCollectionSection section = new RecommendedModifierVocabulariesDtoCollectionSection(this, conversation, parentElement, style);
2809 addAndAdaptSection(parentElement, section);
2810 return section;
2811 }
2812
2813 public MeasurementUnitCollectionSection createMeasurementUnitCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2814 MeasurementUnitCollectionSection section = new MeasurementUnitCollectionSection(this, conversation, parentElement, style);
2815 addAndAdaptSection(parentElement, section);
2816 return section;
2817 }
2818
2819 public MeasurementUnitDtoCollectionSection createMeasurementUnitDtoCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2820 MeasurementUnitDtoCollectionSection section = new MeasurementUnitDtoCollectionSection(this, conversation, parentElement, style);
2821 addAndAdaptSection(parentElement, section);
2822 return section;
2823 }
2824 public StatisticalMeasureCollectionSection createStatisticalMeasureCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2825 StatisticalMeasureCollectionSection section = new StatisticalMeasureCollectionSection(this, conversation, parentElement, style);
2826 addAndAdaptSection(parentElement, section);
2827 return section;
2828 }
2829
2830 public StatisticalMeasureDtoCollectionSection createStatisticalMeasureDtoCollectionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2831 StatisticalMeasureDtoCollectionSection section = new StatisticalMeasureDtoCollectionSection(this, conversation, parentElement, style);
2832 addAndAdaptSection(parentElement, section);
2833 return section;
2834 }
2835
2836 public CollectingAreasDetailSection createCollectingAreasDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2837 CollectingAreasDetailSection section = new CollectingAreasDetailSection(this, conversation, parentElement, style);
2838 addAndAdaptSection(parentElement, section);
2839 return section;
2840 }
2841
2842 public GeoScopeDetailSection createGeoScopeDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2843 GeoScopeDetailSection section = new GeoScopeDetailSection(this, conversation, parentElement, style);
2844 addAndAdaptSection(parentElement, section);
2845 return section;
2846 }
2847
2848 public GeoScopePolyKeyDetailSection createGeoScopePolyKeyDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2849 GeoScopePolyKeyDetailSection section = new GeoScopePolyKeyDetailSection(this, conversation, parentElement, style);
2850 addAndAdaptSection(parentElement, section);
2851 return section;
2852 }
2853
2854 public IdentifierSection createIdentifierDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2855 IdentifierSection section = new IdentifierSection(this, conversation, parentElement, style);
2856 addAndAdaptSection(parentElement, section);
2857 return section;
2858 }
2859
2860 public DerivedUnitFacadeIdentifierSection createDerivedUnitFacadeIdentifierSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2861 DerivedUnitFacadeIdentifierSection section = new DerivedUnitFacadeIdentifierSection(this, conversation, parentElement, style);
2862 addAndAdaptSection(parentElement, section);
2863 return section;
2864 }
2865
2866 public CurrentSampleDesignationDetailSection createCurrentSampleDesignationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2867 CurrentSampleDesignationDetailSection section = new CurrentSampleDesignationDetailSection(this, conversation, parentElement, style);
2868 addAndAdaptSection(parentElement, section);
2869 return section;
2870 }
2871
2872 public CurrentDeterminationDetailSection createCurrentDeterminationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2873 CurrentDeterminationDetailSection section = new CurrentDeterminationDetailSection(this, conversation, parentElement, style);
2874 addAndAdaptSection(parentElement, section);
2875 return section;
2876 }
2877
2878 public PreservedSpecimenCurrentDeterminationDetailSection createPreservedSpecimenCurrentDeterminationDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2879 PreservedSpecimenCurrentDeterminationDetailSection section = new PreservedSpecimenCurrentDeterminationDetailSection(this, conversation, parentElement, style);
2880 addAndAdaptSection(parentElement, section);
2881 return section;
2882 }
2883
2884 public SampleDesignationHistoryDetailSection createSampleDesignationHistoryDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2885 SampleDesignationHistoryDetailSection section = new SampleDesignationHistoryDetailSection(this, conversation, parentElement, style);
2886 addAndAdaptSection(parentElement, section);
2887 return section;
2888 }
2889
2890 public DeterminationHistoryDetailSection createDeterminationHistoryDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2891 DeterminationHistoryDetailSection section = new DeterminationHistoryDetailSection(this, conversation, parentElement, style);
2892 addAndAdaptSection(parentElement, section);
2893 return section;
2894 }
2895
2896 public SpecimenCollectionDetailSection createSpecimenCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2897 SpecimenCollectionDetailSection section = new SpecimenCollectionDetailSection(this, conversation, parentElement, style);
2898 addAndAdaptSection(parentElement, section);
2899 return section;
2900 }
2901
2902 public PreservedSpecimenSourceCollectionDetailSection createPreservedSpecimenSourceCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2903 PreservedSpecimenSourceCollectionDetailSection section = new PreservedSpecimenSourceCollectionDetailSection(this, conversation, parentElement, style);
2904 addAndAdaptSection(parentElement, section);
2905 return section;
2906 }
2907
2908 public SourceCollectionDetailSection createSourceCollectionDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2909 SourceCollectionDetailSection section = new SourceCollectionDetailSection(this, conversation, parentElement, style);
2910 addAndAdaptSection(parentElement, section);
2911 return section;
2912 }
2913
2914 public ScopeRestrictionSection createScopeRestrictionSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2915 ScopeRestrictionSection section = new ScopeRestrictionSection(this, conversation, parentElement, style);
2916 addAndAdaptSection(parentElement, section);
2917 return section;
2918 }
2919
2920 public MemberDetailSection createMemberDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2921 MemberDetailSection section = new MemberDetailSection(this, conversation, parentElement, style);
2922 addAndAdaptSection(parentElement, section);
2923 return section;
2924 }
2925
2926 public GrantedAuthorityDetailSection createGrantedAuthorityDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2927 GrantedAuthorityDetailSection section = new GrantedAuthorityDetailSection(this, conversation, parentElement, style);
2928 addAndAdaptSection(parentElement, section);
2929 return section;
2930 }
2931
2932 public GroupsByUserDetailSection createGroupsByUserDetailSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2933 GroupsByUserDetailSection section = new GroupsByUserDetailSection(this, conversation, parentElement, style);
2934 addAndAdaptSection(parentElement, section);
2935 return section;
2936 }
2937
2938 public TaxonomicScopeSection createTaxonomicScopeSection(ConversationHolder conversation, ICdmFormElement parentElement, int style){
2939 TaxonomicScopeSection section = new TaxonomicScopeSection(this, conversation, parentElement, style);
2940 addAndAdaptSection(parentElement, section);
2941 return section;
2942 }
2943
2944 public AbstractEntityCollectionElement createEntityCollectionElement(AbstractFormSection parentElement,
2945 Object versionableEntity, SelectionListener removeListener, Color backgroundColor, int style) {
2946 AbstractEntityCollectionElement<?> element = null;
2947
2948 Object entity = HibernateProxyHelper.deproxy(versionableEntity);
2949
2950 if (entity instanceof Annotation) {
2951 element = new AnnotationElement(this, parentElement, (Annotation) entity, removeListener, style);
2952 }else if (entity instanceof Person ) {
2953 boolean isNomenclatural = false;
2954 if (parentElement instanceof TeamMemberSection){
2955 isNomenclatural = ((TeamMemberSection) parentElement).isNomenclaturalTeam();
2956 }
2957 element = new TeamMemberElement(this, parentElement, (Person) entity, removeListener, style, isNomenclatural);
2958 } else if (entity instanceof Credit) {
2959 element = new CreditElement(this, parentElement, (Credit) entity, removeListener, style);
2960 } else if (entity instanceof Extension) {
2961 element = new ExtensionElement(this, parentElement, (Extension) entity, removeListener, style);
2962 } else if (entity instanceof ExternalLink) {
2963 boolean isAdvanced = true;
2964 if(parentElement instanceof ExternalLinksSection){
2965 isAdvanced = ((ExternalLinksSection)parentElement).isAdvanced();
2966 }
2967 element = new ExternalLinksElement(this, parentElement, (ExternalLink) entity, isAdvanced, removeListener, style);
2968 } else if (entity instanceof Marker) {
2969 element = new MarkerElement(this, parentElement, (Marker) entity, removeListener, style);
2970 } else if (entity instanceof TaxonNodeAgentRelation) {
2971 element = new TaxonNodeAgentRelationCollectionElement(this, parentElement, (TaxonNodeAgentRelation) entity, removeListener, backgroundColor, style);
2972 }else if (entity instanceof Media) {
2973 element = new MediaMetaElement(this, parentElement, (Media) entity, removeListener, style);
2974 } else if (entity instanceof MediaRepresentation) {
2975 element = new MediaRepresentationElement(this, parentElement, (MediaRepresentation) entity, removeListener,
2976 style);
2977 } else if (entity instanceof ImageFile) {
2978 element = new ImageFileElement(this, parentElement, (ImageFile) entity, removeListener, style);
2979 } else if (entity instanceof MediaRepresentationPart) {
2980 element = new MediaRepresentationPartElement<>(this, parentElement, (MediaRepresentationPart) entity,
2981 removeListener, style);
2982 } else if (entity instanceof NomenclaturalStatus) {
2983 element = new NomenclaturalStatusElement(this, parentElement, (NomenclaturalStatus) entity, removeListener,
2984 style);
2985 } else if (entity instanceof Rights) {
2986 element = new RightsElement(this, parentElement, (Rights) entity, removeListener, style);
2987 } else if (entity instanceof DescriptionElementSource && parentElement.getEntity() instanceof CommonTaxonName) {
2988 element = new CommonNameSourceElement(this, parentElement, (DescriptionElementSource) entity,
2989 removeListener, style);
2990 } else if (entity instanceof DescriptionElementSource && parentElement.getEntity() instanceof Distribution) {
2991 Composite parent = null;
2992 if (parentElement instanceof DescriptionElementSourceSection){
2993 parent = ((DescriptionElementSourceSection)parentElement).getParent();
2994 }
2995 element = new DescriptionElementSourceElement(this, parentElement, (DescriptionElementSource) entity,
2996 removeListener, style, false);
2997 } else if (entity instanceof DescriptionElementSource) {
2998 element = new DescriptionElementSourceElement(this, parentElement, (DescriptionElementSource) entity,
2999 removeListener, style, false);
3000 }else if (entity instanceof TaxonNodeAgentRelation) {
3001 element = new TaxonNodeAgentRelationCollectionElement(this, parentElement, (TaxonNodeAgentRelation) entity,
3002 removeListener,backgroundColor, style);
3003 }else if (entity instanceof IdentifiableSource && parentElement.getEntity() instanceof DescriptionElementBase) {
3004 element = new IdentifiableSourceElement(this, parentElement, (IdentifiableSource) entity, removeListener,
3005 style, true);
3006 } else if (entity instanceof IdentifiableSource ) {
3007 element = new IdentifiableSourceElement(this, parentElement, (IdentifiableSource) entity, removeListener,
3008 style, true);
3009 } else if (entity instanceof DefinedTerm) {
3010 switch(((DefinedTerm)entity).getTermType()) {
3011 case Scope:
3012 element = new ScopeElement(this,
3013 parentElement,
3014 (DefinedTerm) entity,
3015 removeListener,
3016 style);
3017 break;
3018 case Modifier:
3019 element = new ModifierElement(this,
3020 parentElement,
3021 (DefinedTerm) entity,
3022 removeListener,
3023 style);
3024 break;
3025 default:
3026 break;
3027
3028 }
3029 } else if (entity instanceof Reference) {
3030 if(parentElement instanceof SequenceReferenceCollectionDetailSection){
3031 element = new SequenceReferenceCollectionDetailElement(this, parentElement, (Reference) entity, removeListener, style);
3032 }
3033 else{
3034 element = new DescriptionSourceElement(this, parentElement, (Reference) entity, removeListener, style);
3035 }
3036 } else if (entity instanceof NameTypeDesignation) {
3037 element = new NameTypeDesignationElement(this, parentElement, (NameTypeDesignation) entity, removeListener,
3038 style);
3039 } else if (entity instanceof TextualTypeDesignation) {
3040 element = new TextTypeDesignationElement(this, parentElement, (TextualTypeDesignation) entity, removeListener,
3041 style);
3042 } else if (entity instanceof NameRelationship) {
3043 element = new NameRelationshipDetailElement(this, parentElement, (NameRelationship) entity, removeListener,
3044 style);
3045 } else if (entity instanceof SpecimenTypeDesignation) {
3046 if(parentElement instanceof DerivedUnitTypeDesignationSection){
3047 element = new DerivedUnitTypeDesignationElement(this, parentElement, (SpecimenTypeDesignation) entity,
3048 removeListener, style);
3049 }
3050 else{
3051 element = new SpecimenTypeDesignationElement(this, parentElement, (SpecimenTypeDesignation) entity,
3052 removeListener, style);
3053 }
3054 } else if (entity instanceof StateData) {
3055 element = new StateDataElement(this, parentElement, (StateData) entity, removeListener, style);
3056 } else if (entity instanceof StatisticalMeasurementValue) {
3057 element = new StatisticalMeasurementValueElement(this, parentElement, (StatisticalMeasurementValue) entity,
3058 removeListener, style);
3059 } else if (entity instanceof DerivedUnit) {
3060 switch(((DerivedUnit)entity).getRecordBasis()) {
3061 case LivingSpecimen:
3062 case PreservedSpecimen:
3063 case OtherSpecimen:
3064 element = new SpecimenCollectionDetailElement(this,
3065 parentElement,
3066 (DerivedUnit) entity,
3067 removeListener,
3068 style);
3069 break;
3070 default:
3071 element = new DerivedUnitElement(this,
3072 parentElement,
3073 (DerivedUnit) entity,
3074 removeListener,
3075 style);
3076 }
3077 } else if (entity instanceof NamedArea) {
3078 element = new CollectingAreaDetailElement(this, parentElement, (NamedArea) entity, removeListener, style);
3079 } else if (entity instanceof DeterminationEvent) {
3080 element = new DeterminationEventDetailElement(this, parentElement, (DeterminationEvent) entity, removeListener, style);
3081 } else if (entity instanceof User) {
3082 element = new MemberDetailElement(this, parentElement, (User) entity, removeListener, style);
3083 } else if (entity instanceof GrantedAuthority) {
3084 element = new GrantedAuthorityCollectionElement(this, parentElement, (GrantedAuthorityImpl) entity, ((Group)parentElement.getEntity()),
3085 removeListener, style);
3086 } else if (entity instanceof Group) {
3087 element = new GroupsByUserDetailElement(this, parentElement, (Group) entity, removeListener, style);
3088 } else if (entity instanceof Taxon) {
3089 element = new TaxonDetailElement(this, parentElement, (Taxon) entity, removeListener, style);
3090 } else if (entity instanceof DescriptionElementBase) {
3091 // this is the special case for protologs, maybe we can do this
3092 // differently when API improves
3093 DescriptionElementBase descriptionElement = (DescriptionElementBase) entity;
3094 // if (descriptionElement.getFeature().equals(Feature.PROTOLOGUE())) {
3095 // element = new ProtologueElement(this, parentElement, descriptionElement, removeListener, style);
3096 // }
3097 } else if (entity instanceof Identifier) {
3098 if(parentElement instanceof AbstractSampleDesignationDetailSection){
3099 element = new SampleDesignationTextDetailElement(this, parentElement, (Identifier) entity, removeListener, backgroundColor, style);
3100 }
3101 else{
3102 element = new IdentifierElement(this, parentElement, (Identifier) entity, removeListener, style);
3103 }
3104 } else if (entity instanceof TermVocabulary) {
3105 TermVocabulary<?> termVocabulary = (TermVocabulary<?>)entity;
3106 switch (termVocabulary.getTermType()) {
3107 case State:
3108 element = new StateVocabularyCollectionElement(this, parentElement, (TermVocabulary<State>) entity, removeListener, backgroundColor, style);
3109 break;
3110 case Modifier:
3111 element = new RecommendedModifierVocabulariesElement(this, parentElement, (TermVocabulary<DefinedTerm>) entity, removeListener, backgroundColor, style);
3112 break;
3113 default:
3114 break;
3115 }
3116 }else if (entity instanceof TermVocabularyDto) {
3117 TermVocabularyDto termVocabulary = (TermVocabularyDto)entity;
3118 switch (termVocabulary.getTermType()) {
3119 case State:
3120 element = new StateVocabularyDtoCollectionElement(this, parentElement, termVocabulary, removeListener, backgroundColor, style);
3121 break;
3122 case Modifier:
3123 element = new RecommendedModifierDtoVocabulariesElement(this, parentElement, termVocabulary, removeListener, backgroundColor, style);
3124 break;
3125 default:
3126 break;
3127 }
3128 }else if (entity instanceof MeasurementUnit) {
3129 element = new MeasurementUnitCollectionElement(this, parentElement, (MeasurementUnit) entity, removeListener, backgroundColor, style);
3130 }else if (entity instanceof TermDto) {
3131 if(((TermDto)entity).getTermType().equals(TermType.MeasurementUnit)){
3132 element = new MeasurementUnitDtoCollectionElement(this, parentElement, (TermDto) entity, removeListener, backgroundColor, style);
3133 }else if (((TermDto)entity).getTermType().equals(TermType.StatisticalMeasure)){
3134 element = new StatisticalMeasureDtoCollectionElement(this, parentElement, (TermDto) entity, removeListener, backgroundColor, style);
3135 }
3136 }else if (entity instanceof StatisticalMeasure) {
3137 element = new StatisticalMeasureCollectionElement(this, parentElement, (StatisticalMeasure) entity, removeListener, backgroundColor, style);
3138 } else if (entity instanceof FeatureState && parentElement instanceof InapplicableIfEntityCollectionSection) {
3139 element = new InapplicableIfCollectionElement(this, parentElement, (FeatureState) entity, removeListener, backgroundColor, style);
3140 } else if (entity instanceof FeatureState && parentElement instanceof OnlyApplicableIfEntityCollectionSection) {
3141 element = new OnlyApplicableIfCollectionElement(this, parentElement, (FeatureState) entity, removeListener, backgroundColor, style);
3142 } else if (entity instanceof FeatureState && parentElement instanceof InapplicableIfEntityCollectionSectionForNode) {
3143 element = new InapplicableIfCollectionElement(this, parentElement, (FeatureState) entity, removeListener, backgroundColor, style);
3144 } else if (entity instanceof FeatureState && parentElement instanceof OnlyApplicableIfEntityCollectionSectionForNode) {
3145 element = new OnlyApplicableIfCollectionElement(this, parentElement, (FeatureState) entity, removeListener, backgroundColor, style);
3146 }
3147
3148 //check for parent section when entity is null
3149 //this happens when AbstractUnboundEntityCollectionSection is used
3150 if(element==null){
3151 if(parentElement instanceof ScopeSection || parentElement instanceof ScopeRestrictionSection){
3152 element = new ScopeElement(this,
3153 parentElement,
3154 (DefinedTerm) entity,
3155 removeListener,
3156 style);
3157 }
3158 else if(parentElement instanceof ModifierSection){
3159 element = new ModifierElement(this,
3160 parentElement,
3161 (DefinedTerm) entity,
3162 removeListener,
3163 style);
3164 }
3165 }
3166
3167
3168 if (element == null) {
3169 MessagingUtils.messageDialog(
3170 String.format("Error when creating section %s",
3171 parentElement.getClass().getSimpleName()),
3172 this,
3173 String.format("Could not generate collection element for entity of class %s."
3174 + " Looks like the case is not yet handled. Check implementation.\n"
3175 + "Entity: %s", entity.getClass(), entity.toString()), null);
3176 }
3177
3178 else{
3179 if (backgroundColor != null && !backgroundColor.isDisposed()) {
3180 element.setPersistentBackground(backgroundColor);
3181 }
3182 adapt(element);
3183 parentElement.addElement(element);
3184 }
3185
3186 return element;
3187 }
3188
3189 /**
3190 * <p>
3191 * Creates a selection element for the given type T.
3192 * </p>
3193 * <p>
3194 * <strong>Selection elements not handled by this method:</strong>
3195 * <ul>
3196 * <li>{@link TaxonNodeSelectionElement} see
3197 * {@link #createTaxonNodeSelectionElement(ConversationHolder, ICdmFormElement, String, TaxonNode, int, int)}
3198 * </li>
3199 * <li>{@link NomenclaturalAuthorTeamSelectionElement} see
3200 * {@link #createNomenclaturalAuthorTeamSelectionElement(ConversationHolder, ICdmFormElement, String, Team, int, int)}
3201 * </li>
3202 * </ul>
3203 * </p>
3204 *
3205 * @param clazz
3206 * a {@link Class} object of the type that you want the selection
3207 * element to handle
3208 * @param parentElement
3209 * a {@link ICdmFormElement} object.
3210 * @param labelString
3211 * a {@link String} object.
3212 * @param selectionType
3213 * @param selection
3214 * a {@link ICdmBase} object.
3215 * @param style
3216 * a int.
3217 * @param conversation
3218 * a {@link ConversationHolder} object.
3219 * @return a {@link EntitySelectionElement} object.
3220 */
3221 public <T extends CdmBase> EntitySelectionElement<T> createSelectionElement(Class<T> clazz,
3222 ICdmFormElement parentElement, String labelString, T selection, int mode,
3223 int style, Integer limit) {
3224 EntitySelectionElement<T> element = new EntitySelectionElement<T>(this,
3225 parentElement, clazz,
3226 labelString, selection, mode, style, limit);
3227 adapt(element);
3228 parentElement.addElement(element);
3229 return element;
3230 }
3231
3232 public <T extends CdmBase> EntitySelectionElement<T> createSelectionElement(Class<T> clazz,
3233 ICdmFormElement parentElement, String labelString, T selection, int mode,
3234 int style, boolean filterElement) {
3235 EntitySelectionElement<T> element = new EntitySelectionElement<T>(this, //conversation,
3236 parentElement, clazz,
3237 labelString, selection, mode, style, filterElement);
3238 adapt(element);
3239 parentElement.addElement(element);
3240 return element;
3241 }
3242
3243 public <T extends CdmBase> EntitySelectionElement<T> createSelectionElement(Class<T> clazz,
3244 // ConversationHolder conversation,
3245 ICdmFormElement parentElement, String labelString, T selection, int mode,
3246 int style) {
3247 EntitySelectionElement<T> element = new EntitySelectionElement<T>(this,
3248 parentElement, clazz,
3249 labelString, selection, mode, style);
3250 adapt(element);
3251 parentElement.addElement(element);
3252 return element;
3253 }
3254
3255 public CommonNameReferenceSelectionElement createCommonNameReferenceSelectionElement(ICdmFormElement parentElement, String labelString, Reference selection, int mode,
3256 int style) {
3257 CommonNameReferenceSelectionElement element = new CommonNameReferenceSelectionElement(this,
3258 parentElement, labelString, selection, mode, style);
3259 adapt(element);
3260 parentElement.addElement(element);
3261 return element;
3262 }
3263
3264 /**
3265 * <p>
3266 * Creates a selection element for the given type T which shows only the <b>abbreviated</b> title as the label.
3267 * </p>
3268 * <p>
3269 * <strong>Selection elements not handled by this method:</strong>
3270 * <ul>
3271 * <li>{@link TaxonNodeSelectionElement} see
3272 * {@link #createTaxonNodeSelectionElement(ConversationHolder, ICdmFormElement, String, TaxonNode, int, int)}
3273 * </li>
3274 * <li>{@link NomenclaturalAuthorTeamSelectionElement} see
3275 * {@link #createNomenclaturalAuthorTeamSelectionElement(ConversationHolder, ICdmFormElement, String, Team, int, int)}
3276 * </li>
3277 * </ul>
3278 * </p>
3279 *
3280 * @param clazz
3281 * a {@link Class} object of the type that you want the selection
3282 * element to handle
3283 * @param parentElement
3284 * a {@link ICdmFormElement} object.
3285 * @param labelString
3286 * a {@link String} object.
3287 * @param selectionType
3288 * @param selection
3289 * a {@link ICdmBase} object.
3290 * @param style
3291 * a int.
3292 * @param conversation
3293 * a {@link ConversationHolder} object.
3294 * @return a {@link EntitySelectionElement} object.
3295 */
3296 public <T extends CdmBase> EntitySelectionElementWithAbbreviatedTitle<T> createSelectionElementWithAbbreviatedTitle(
3297 Class<T> clazz, ConversationHolder conversation, ICdmFormElement parentElement, String labelString,
3298 T selection, int mode, int style) {
3299 EntitySelectionElementWithAbbreviatedTitle<T> element = new EntitySelectionElementWithAbbreviatedTitle<T>(this, //conversation,
3300 parentElement, clazz,
3301 labelString, selection, mode, style);
3302 adapt(element);
3303 parentElement.addElement(element);
3304 return element;
3305 }
3306
3307 public TaxonNodeSelectionElement createTaxonNodeSelectionElement(ConversationHolder conversation,
3308 ICdmFormElement parentElement, String labelString, TaxonNode selection, int mode, int style) {
3309 TaxonNodeSelectionElement element = new TaxonNodeSelectionElement(this,
3310 parentElement,
3311 labelString, selection, mode, style, null);
3312 adapt(element);
3313 parentElement.addElement(element);
3314 return element;
3315 }
3316 public TaxonNodeSelectionElement createTaxonNodeSelectionElement(ConversationHolder conversation,
3317 ICdmFormElement parentElement, String labelString, TaxonNode selection, int mode, int style, Integer limit) {
3318 TaxonNodeSelectionElement element = new TaxonNodeSelectionElement(this, //conversation,
3319 parentElement,
3320 labelString, selection, mode, style, limit);
3321 adapt(element);
3322 parentElement.addElement(element);
3323 return element;
3324 }
3325
3326
3327 // public NomenclaturalAuthorTeamSelectionElement createNomenclaturalAuthorTeamSelectionElement(
3328 // ConversationHolder conversation, ICdmFormElement parentElement, String labelString, Team selection,
3329 // int mode, int style) {
3330 // NomenclaturalAuthorTeamSelectionElement element = new NomenclaturalAuthorTeamSelectionElement(this,
3331 // conversation, parentElement, labelString, selection, mode, style);
3332 // adapt(element);
3333 // parentElement.addElement(element);
3334 // return element;
3335 // }
3336
3337 /** {@inheritDoc} */
3338 public LabelElement createLabel(ICdmFormElement parentElement, String text) {
3339 LabelElement labelElement = new LabelElement(this, parentElement, text);
3340 adapt(labelElement);
3341 parentElement.addElement(labelElement);
3342 return labelElement;
3343 }
3344
3345
3346
3347 // public DateElementFormElement createDateElementForm(ICdmFormElement formElement, String labelText, DateTime dateTime, int style){
3348 // Label label = new Label(formElement.getLayoutComposite(), style);
3349 // label.setText(labelText+" (yyyy-MM-dd)");
3350 // DateElementFormElement dateElement = new DateElementFormElement(this, dateTime, style, formElement.getLayoutComposite());
3351 // dateElement.initInternalController();
3352 //
3353 // return dateElement;
3354 // }
3355
3356 public DateElement createDateElement(ICdmFormElement formElement, String labelText, DateTime dateTime, int style, boolean editableText){
3357 Label label = new Label(formElement.getLayoutComposite(), style);
3358 label.setText(labelText);
3359 label.setLayoutData(new TableWrapData(TableWrapData.LEFT, TableWrapData.MIDDLE, 1, 1));
3360 DateElement dateElement = new DateElement(formElement.getLayoutComposite(), dateTime, labelText, style, editableText);
3361 dateElement.initController(this, formElement);
3362 dateElement.setLayoutData(new TableWrapData(TableWrapData.LEFT, TableWrapData.MIDDLE, 1, 1));
3363 return dateElement;
3364 }
3365
3366 /**
3367 * <p>
3368 * Getter for the field <code>selectionProvider</code>.
3369 * </p>
3370 *
3371 * @return a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
3372 */
3373 public ISelectionProvider getSelectionProvider() {
3374 return selectionProvider;
3375 }
3376
3377 /**
3378 * <p>
3379 * createDetailedDescriptionDetailElement
3380 * </p>
3381 *
3382 * @param parentElement
3383 * a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
3384 * object.
3385 * @param entity
3386 * a
3387 * {@link eu.etaxonomy.cdm.model.description.DescriptionElementBase}
3388 * object.
3389 * @param style
3390 * a int.
3391 * @return a
3392 * {@link eu.etaxonomy.taxeditor.ui.section.description.detail.AbstractDetailedDescriptionDetailElement}
3393 * object.
3394 */
3395 public AbstractDetailedDescriptionDetailElement createDetailedDescriptionDetailElement(
3396 ICdmFormElement parentElement, DescriptionElementBase entity, int style, boolean enabled) {
3397 AbstractDetailedDescriptionDetailElement detailedDescriptionElement = null;
3398
3399 if (entity instanceof CategoricalData) {
3400 detailedDescriptionElement = new CategoricalDataDetailElement(this, parentElement,
3401 (CategoricalData) entity, style);
3402 } else if (entity instanceof CommonTaxonName) {
3403 detailedDescriptionElement = new CommonNameDetailElement(this, parentElement, (CommonTaxonName) entity,
3404 style);
3405 } else if (entity instanceof Distribution && !enabled) {
3406 detailedDescriptionElement = new DistributionDetailElement(this, parentElement, (Distribution) entity,
3407 enabled, style);
3408 } else if (entity instanceof Distribution) {
3409 detailedDescriptionElement = new DistributionDetailElement(this, parentElement, (Distribution) entity,
3410 true, style);
3411 }else if (entity instanceof IndividualsAssociation) {
3412 detailedDescriptionElement = new IndividualsAssociationDetailElement(this, parentElement,
3413 (IndividualsAssociation) entity, style);
3414 } else if (entity instanceof QuantitativeData) {
3415 detailedDescriptionElement = new QuantitativeDataDetailElement(this, parentElement,
3416 (QuantitativeData) entity, style);
3417 } else if (entity instanceof TaxonInteraction) {
3418 detailedDescriptionElement = new TaxonInteractionDetailElement(this, parentElement,
3419 (TaxonInteraction) entity, style);
3420 } else if (entity instanceof TemporalData) {
3421 detailedDescriptionElement = new TemporalDataDetailElement(this, parentElement, (TemporalData) entity, style);
3422 } else if (entity instanceof TextData) {
3423 detailedDescriptionElement = new TextDataDetailElement(this, parentElement, (TextData) entity, style);
3424 }
3425 else {
3426 throw new IllegalStateException("There is no interface for the given description element");
3427 }
3428 detailedDescriptionElement.setEnabled(enabled);
3429 adapt(detailedDescriptionElement);
3430 parentElement.addElement(detailedDescriptionElement);
3431 return detailedDescriptionElement;
3432
3433 }
3434
3435 /**
3436 * Creates a styled text as a part of the form.
3437 *
3438 * @param parent
3439 * the text parent
3440 * @param value
3441 * the text initial value
3442 * @param style
3443 * the text style
3444 * @return the text widget
3445 */
3446 public StyledText createStyledText(Composite parent, String value, int style) {
3447 StyledText text = new StyledText(parent, getBorderStyle() | style | getOrientation());
3448 if (value != null) {
3449 text.setText(value);
3450 }
3451 text.setForeground(getColors().getForeground());
3452 text.setBackground(getColors().getBackground());
3453 // text.addFocusListener(visibilityHandler);
3454 return text;
3455 }
3456
3457 public PreservedSpecimenDetailSection createPreservedSpecimenDetailsSection(ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style) {
3458 PreservedSpecimenDetailSection section = new PreservedSpecimenDetailSection(this, conversation, parentElement, selectionProvider, style);
3459 addAndAdaptSection(parentElement, section);
3460 return section;
3461 }
3462
3463 /**
3464 * @param formElement
3465 * @param conversationHolder
3466 * @param style
3467 * @return
3468 */
3469 public TaxonNodeAgentRelationCollectionSection createTaxonNodeAgentRelationCollectionSection(
3470 ICdmFormElement formElement, ConversationHolder conversationHolder, int style) {
3471 TaxonNodeAgentRelationCollectionSection section = new TaxonNodeAgentRelationCollectionSection(this, conversationHolder, formElement, style);
3472 addAndAdaptSection(formElement, section);
3473 return section;
3474 }
3475
3476
3477 public TaxonOfRelationshipElement createTaxonOfRelationshipDetailElement(
3478 ICdmFormElement parentElement, int style) {
3479 TaxonOfRelationshipElement section = new TaxonOfRelationshipElement(this, parentElement, style);
3480 addAndAdaptElement(parentElement, section);
3481 return section;
3482 }
3483
3484 public TaxonDetailSection createTaxonDetailSection(ConversationHolder conversationHolder,
3485 ICdmFormElement formElement, ISelectionProvider selectionProvider, int style) {
3486 TaxonDetailSection section = new TaxonDetailSection(this, conversationHolder, formElement, selectionProvider, style);
3487 addAndAdaptSection(formElement, section);
3488 return section;
3489 }
3490
3491
3492 /**
3493 * <p>
3494 * createTextWithLabelElement
3495 * </p>
3496 *
3497 * @param parentElement
3498 * a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
3499 * object.
3500 * @param labelString
3501 * a {@link java.lang.String} object.
3502 * @param initialText
3503 * a {@link java.lang.String} object.
3504 * @param textLimit maximal number of characters allowed
3505 * @param style
3506 * a int.
3507 * @return a {@link eu.etaxonomy.taxeditor.ui.element.TextWithLabelElement}
3508 * object.
3509 */
3510 public RuleConsideredElement createRuleConsideredElement(ICdmFormElement parentElement, String labelString, boolean isShowCodeEdition, int style) {
3511 RuleConsideredElement element = new RuleConsideredElement(this, parentElement, labelString, isShowCodeEdition, style);
3512 adapt(element);
3513 parentElement.addElement(element);
3514 return element;
3515 }
3516
3517 /**
3518 * @param class1
3519 * @param formElement
3520 * @param string
3521 * @param area
3522 * @param nothing
3523 * @param style
3524 * @return
3525 */
3526 public EntitySelectionElementWithIdInVocabulary createSelectionElementWithIdInVocabulary(Class<NamedArea> clazz,
3527 ICdmFormElement formElement, String labelString, NamedArea area, int mode, int style) {
3528 EntitySelectionElementWithIdInVocabulary element = new EntitySelectionElementWithIdInVocabulary(this,
3529 formElement, clazz, labelString, area, mode, style);
3530 adapt(element);
3531 formElement.addElement(element);
3532 return element;
3533 }
3534
3535 /**
3536 * @param extendedTimePeriodElement
3537 * @param twistie
3538 * @return
3539 */
3540 public ExtendedTimeDetailSection createExtendedTimeDetailSection(
3541 ExtendedTimePeriodElement parentElement, int style) {
3542 ExtendedTimeDetailSection section = new ExtendedTimeDetailSection(this, parentElement, style);
3543 parentElement.addElement(section);
3544 adapt(section);
3545 return section;
3546 }
3547 public ExtendedTimePeriodElement createExtendedTimePeriodElement(
3548 ICdmFormElement parentElement, String labelString, ExtendedTimePeriod timePeriod, int style) {
3549 ExtendedTimePeriodElement section = new ExtendedTimePeriodElement(this, parentElement, labelString, timePeriod, style);
3550 parentElement.addElement(section);
3551 adapt(section);
3552 return section;
3553 }
3554
3555
3556
3557
3558 // public RichTextWithLabelElement createRichTextLabelElement(ICdmFormElement parentElement, String labelString, String initialText, int textHeight, int style) {
3559 // RichTextWithLabelElement element = new RichTextWithLabelElement(this, parentElement, labelString,
3560 // initialText, textHeight, style);
3561 // adapt(element);
3562 // parentElement.addElement(element);
3563 // return element;
3564 // }
3565
3566
3567
3568
3569
3570
3571
3572 }