Project

General

Profile

Download (1.88 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.ui.section.occurrence.association;
12

    
13
import org.eclipse.jface.viewers.ISelectionProvider;
14

    
15
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
16
import eu.etaxonomy.cdm.api.facade.DerivedUnitFacade;
17
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
18
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
19
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
20
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
21
import eu.etaxonomy.taxeditor.ui.section.occurrence.IDerivedUnitFacadeDetailSection;
22

    
23
/**
24
 *
25
 * @author pplitzner
26
 * @date Dec 1, 2014
27
 *
28
 */
29
public class TaxonAssociationDetailSection extends AbstractCdmDetailSection<DerivedUnitFacade> implements IDerivedUnitFacadeDetailSection{
30

    
31
	public TaxonAssociationDetailSection(CdmFormFactory formFactory,
32
			ConversationHolder conversation, ICdmFormElement parentElement,
33
			ISelectionProvider selectionProvider, int style) {
34
		super(formFactory, conversation, parentElement, selectionProvider, style);
35
	}
36

    
37
	/* (non-Javadoc)
38
	 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getHeading()
39
	 */
40
	/** {@inheritDoc} */
41
	@Override
42
	public String getHeading() {
43
		return "Taxon Associations";
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<DerivedUnitFacade> createCdmDetailElement(AbstractCdmDetailSection<DerivedUnitFacade> parentElement, int style) {
51
	    return formFactory.createTaxonAssociationDetailElement(parentElement);
52
	}
53
}
(2-2/2)