3a3a1fad749460a9188a67ec606f7a17133a628b
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / taxon / TaxonBaseDetailSection.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.ui.section.taxon;
12
13 import org.eclipse.jface.viewers.ISelectionProvider;
14
15 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
16 import eu.etaxonomy.cdm.model.taxon.TaxonBase;
17 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
18 import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
19 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
20 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
21
22 /**
23 * <p>TaxonBaseDetailSection class.</p>
24 *
25 * @author n.hoffmann
26 * @created Nov 4, 2009
27 * @version 1.0
28 */
29 public class TaxonBaseDetailSection extends AbstractCdmDetailSection<TaxonBase> {
30
31 /**
32 * <p>Constructor for TaxonBaseDetailSection.</p>
33 *
34 * @param parentElement a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement} object.
35 * @param style a int.
36 * @param cdmFormFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
37 * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
38 * @param selectionProvider a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
39 */
40 public TaxonBaseDetailSection(CdmFormFactory cdmFormFactory, ConversationHolder conversation, ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style) {
41 super(cdmFormFactory, conversation, parentElement, selectionProvider, style);
42 }
43
44 /** {@inheritDoc} */
45 @Override
46 public String getHeading() {
47 return getEntity() != null ? getEntity().getClass().getSimpleName() : "TaxonBase";
48 }
49
50 /* (non-Javadoc)
51 * @see eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection#createCdmDetailElement(eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection, int)
52 */
53 @Override
54 protected AbstractCdmDetailElement<TaxonBase> createCdmDetailElement(AbstractCdmDetailSection<TaxonBase> parentElement, int style) {
55 return formFactory.createTaxonBaseDetailElement(parentElement, style);
56 }
57
58 /* (non-Javadoc)
59 * @see eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection#setSectionTitle()
60 */
61 @Override
62 protected void setSectionTitle() {
63 super.setSectionTitle();
64 String title = getText();
65 // we have to duplicate ampersands otherwise they are treated as
66 // mnenomic (see Label.setText() documentation)
67 // see also #4302
68 title = title.replace("&", "&&");
69 setText(title);
70 }
71
72 }