(no commit message)
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / section / classification / TaxonNodeDetailSection.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.classification;
12
13 import org.eclipse.jface.viewers.ISelectionProvider;
14
15 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
16 import eu.etaxonomy.cdm.model.taxon.TaxonNode;
17 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
18 import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
19 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory.DetailType;
20 import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
21
22 /**
23 * <p>TaxonNodeDetailSection class.</p>
24 *
25 * @author n.hoffmann
26 * @created Sep 27, 2010
27 * @version 1.0
28 */
29 public class TaxonNodeDetailSection extends AbstractCdmDetailSection<TaxonNode> {
30
31 /* (non-Javadoc)
32 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getDetailType()
33 */
34 /** {@inheritDoc} */
35 @Override
36 protected DetailType getDetailType() {
37 return null;
38 }
39
40 /**
41 * <p>Constructor for TaxonNodeDetailSection.</p>
42 *
43 * @param formFactory a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory} object.
44 * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
45 * @param parentElement a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement} object.
46 * @param selectionProvider a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
47 * @param style a int.
48 */
49 public TaxonNodeDetailSection(CdmFormFactory formFactory,
50 ConversationHolder conversation, ICdmFormElement parentElement,
51 ISelectionProvider selectionProvider, int style) {
52 super(formFactory, conversation, parentElement, selectionProvider, style);
53 }
54
55 /* (non-Javadoc)
56 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getHeading()
57 */
58 /** {@inheritDoc} */
59 @Override
60 public String getHeading() {
61 return null;
62 }
63 }