Project

General

Profile

Download (2.45 KB) Statistics
| Branch: | Tag: | Revision:
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.TaxonomicTree;
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>ClassificationDetailSection class.</p>
25
 *
26
 * @author n.hoffmann
27
 * @created Sep 27, 2010
28
 * @version 1.0
29
 */
30
public class ClassificationDetailSection extends AbstractCdmDetailSection<TaxonomicTree> {
31
	
32

    
33
	private static final Logger logger = Logger
34
			.getLogger(ClassificationDetailSection.class);
35

    
36
	/**
37
	 * <p>Constructor for ClassificationDetailSection.</p>
38
	 *
39
	 * @param formFactory a {@link eu.etaxonomy.taxeditor.forms.CdmFormFactory} object.
40
	 * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
41
	 * @param parentElement a {@link eu.etaxonomy.taxeditor.forms.ICdmFormElement} object.
42
	 * @param selectionProvider a {@link org.eclipse.jface.viewers.ISelectionProvider} object.
43
	 * @param style a int.
44
	 */
45
	public ClassificationDetailSection(CdmFormFactory formFactory,
46
			ConversationHolder conversation, ICdmFormElement parentElement,
47
			ISelectionProvider selectionProvider, int style) {
48
		super(formFactory, conversation, parentElement, selectionProvider, style);
49
		// TODO Auto-generated constructor stub
50
	}
51
	
52
	/* (non-Javadoc)
53
	 * @see eu.etaxonomy.taxeditor.forms.IEnableableFormElement#setEnabled(boolean)
54
	 */
55
	/** {@inheritDoc} */
56
	@Override
57
	public void setEnabled(boolean enabled) {
58
		// TODO Auto-generated method stub
59

    
60
	}
61

    
62
	/* (non-Javadoc)
63
	 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getDetailType()
64
	 */
65
	/** {@inheritDoc} */
66
	@Override
67
	protected DetailType getDetailType() {
68
		// TODO Auto-generated method stub
69
		return null;
70
	}
71

    
72
	/* (non-Javadoc)
73
	 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getHeading()
74
	 */
75
	/** {@inheritDoc} */
76
	@Override
77
	public String getHeading() {
78
		// TODO Auto-generated method stub
79
		return null;
80
	}
81
}
(2-2/6)