Project

General

Profile

« Previous | Next » 

Revision b0ce5b17

Added by Patrick Plitzner over 10 years ago

merged trunk into branch

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/occurrence/GatheringEventDetailSection.java
1 1
// $Id$
2 2
/**
3 3
* Copyright (C) 2007 EDIT
4
* European Distributed Institute of Taxonomy 
4
* European Distributed Institute of Taxonomy
5 5
* http://www.e-taxonomy.eu
6
* 
6
*
7 7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8 8
* See LICENSE.TXT at the top of this package for the full license terms.
9 9
*/
......
16 16
import eu.etaxonomy.cdm.api.facade.DerivedUnitFacade;
17 17
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
18 18
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
19
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory.DetailType;
19
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
20 20
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
21 21

  
22 22
/**
......
27 27
 * @version 1.0
28 28
 */
29 29
public class GatheringEventDetailSection extends AbstractCdmDetailSection<DerivedUnitFacade> implements IDerivedUnitFacadeDetailSection{
30
	
30

  
31 31
	/**
32 32
	 * <p>Constructor for GatheringEventDetailSection.</p>
33 33
	 *
......
42 42
			ISelectionProvider selectionProvider, int style) {
43 43
		super(formFactory, conversation, parentElement, selectionProvider, style);
44 44
	}
45
	
46
	
45

  
46

  
47 47
	/* (non-Javadoc)
48
	 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getDetailType()
48
	 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getHeading()
49 49
	 */
50 50
	/** {@inheritDoc} */
51 51
	@Override
52
	protected DetailType getDetailType() {
53
		return DetailType.GATHERING_EVENT;
52
	public String getHeading() {
53
		return "Gathering Event Details";
54 54
	}
55 55

  
56 56
	/* (non-Javadoc)
57
	 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getHeading()
57
	 * @see eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection#createCdmDetailElement(eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection, int)
58 58
	 */
59
	/** {@inheritDoc} */
60 59
	@Override
61
	public String getHeading() {
62
		return "Gathering Event Details";
60
	protected AbstractCdmDetailElement<DerivedUnitFacade> createCdmDetailElement(AbstractCdmDetailSection<DerivedUnitFacade> parentElement, int style) {
61
	    return formFactory.createGatheringEventDetailElement(parentElement);
63 62
	}
64 63
}

Also available in: Unified diff