Updated version in pom / project files to taxeditor version : 5.16.0 and cdmlib versi...
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / vocabulary / NamedAreaLevelDetailSection.java
1 /**
2 * Copyright (C) 2009 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.section.vocabulary;
10
11 import org.eclipse.jface.viewers.ISelectionProvider;
12
13 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
14 import eu.etaxonomy.cdm.model.location.NamedAreaLevel;
15 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
16 import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
17 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
18 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
19
20 /**
21 * @author l.morris
22 * @date 4 Jan 2012
23 *
24 */
25 public class NamedAreaLevelDetailSection extends AbstractCdmDetailSection<NamedAreaLevel> {
26
27 /**
28 * @param formFactory
29 * @param parentElement
30 * @param style
31 */
32 public NamedAreaLevelDetailSection(CdmFormFactory formFactory,
33 ConversationHolder conversation, ICdmFormElement parentElement,
34 ISelectionProvider selectionProvider, int style) {
35 super(formFactory, conversation, parentElement, selectionProvider, style);
36 }
37
38 /* (non-Javadoc)
39 * @see eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection#getHeading()
40 */
41 @Override
42 public String getHeading() {
43 return "Defined Term: "+ (getEntity() != null ? getEntity().getLabel() : "");
44 }
45
46 /* (non-Javadoc)
47 * @see eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection#createCdmDetailElement(eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection, int)
48 */
49 @Override
50 protected AbstractCdmDetailElement<NamedAreaLevel> createCdmDetailElement(AbstractCdmDetailSection<NamedAreaLevel> parentElement, int style) {
51 return formFactory.createNamedAreaLevelElement(parentElement);
52 }
53
54 }