merging in latest changes from trunk
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / description / DescriptionDetailSection.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.description;
12
13 import org.eclipse.jface.viewers.ISelectionProvider;
14
15 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
16 import eu.etaxonomy.cdm.model.description.DescriptionBase;
17 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
18 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory.DetailType;
19 import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
20 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
21
22 /**
23 * <p>DescriptionDetailSection class.</p>
24 *
25 * @author n.hoffmann
26 * @created Mar 5, 2010
27 * @version 1.0
28 */
29 public class DescriptionDetailSection extends AbstractCdmDetailSection<DescriptionBase> {
30
31 /**
32 * <p>Constructor for DescriptionDetailSection.</p>
33 *
34 * @param cdmFormFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
35 * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
36 * @param parentElement a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement} object.
37 * @param selectionProvider a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
38 * @param style a int.
39 */
40 public DescriptionDetailSection(CdmFormFactory cdmFormFactory, ConversationHolder conversation,
41 ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style) {
42 super(cdmFormFactory, conversation, parentElement, selectionProvider, style);
43
44 }
45
46 /** {@inheritDoc} */
47 @Override
48 public String getHeading() {
49 return "Description";
50 }
51
52 /** {@inheritDoc} */
53 @Override
54 protected DetailType getDetailType() {
55 return DetailType.DESCRIPTION;
56 }
57 }