including changes from cdmlib-print
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / 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.section.classification;
12
13 import org.apache.log4j.Logger;
14 import org.eclipse.jface.viewers.ISelectionProvider;
15
16 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
17 import eu.etaxonomy.cdm.model.taxon.TaxonNode;
18 import eu.etaxonomy.taxeditor.forms.CdmFormFactory;
19 import eu.etaxonomy.taxeditor.forms.CdmFormFactory.DetailType;
20 import eu.etaxonomy.taxeditor.forms.ICdmFormElement;
21 import eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection;
22
23 /**
24 * <p>TaxonNodeDetailSection class.</p>
25 *
26 * @author n.hoffmann
27 * @created Sep 27, 2010
28 * @version 1.0
29 */
30 public class TaxonNodeDetailSection extends AbstractCdmDetailSection<TaxonNode> {
31
32
33 private static final Logger logger = Logger
34 .getLogger(TaxonNodeDetailSection.class);
35
36 /* (non-Javadoc)
37 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getDetailType()
38 */
39 /** {@inheritDoc} */
40 @Override
41 protected DetailType getDetailType() {
42 // TODO Auto-generated method stub
43 return null;
44 }
45
46 /**
47 * <p>Constructor for TaxonNodeDetailSection.</p>
48 *
49 * @param formFactory a {@link eu.etaxonomy.taxeditor.forms.CdmFormFactory} object.
50 * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
51 * @param parentElement a {@link eu.etaxonomy.taxeditor.forms.ICdmFormElement} object.
52 * @param selectionProvider a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
53 * @param style a int.
54 */
55 public TaxonNodeDetailSection(CdmFormFactory formFactory,
56 ConversationHolder conversation, ICdmFormElement parentElement,
57 ISelectionProvider selectionProvider, int style) {
58 super(formFactory, conversation, parentElement, selectionProvider, style);
59 // TODO Auto-generated constructor stub
60 }
61
62 /* (non-Javadoc)
63 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getHeading()
64 */
65 /** {@inheritDoc} */
66 @Override
67 public String getHeading() {
68 // TODO Auto-generated method stub
69 return null;
70 }
71 }