Project

General

Profile

« Previous | Next » 

Revision 139902da

Added by Patrick Plitzner almost 11 years ago

  • completely removed DetailType enum and all its uses

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/description/NaturalLanguageSection.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
*/
......
15 15
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
16 16
import eu.etaxonomy.cdm.model.description.TaxonDescription;
17 17
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
18
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory.DetailType;
19 18
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
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 NaturalLanguageSection extends AbstractCdmDetailSection<TaxonDescription> {
30
	
30

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

  
46 46
	/* (non-Javadoc)
47
	 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getDetailType()
47
	 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getHeading()
48 48
	 */
49 49
	/** {@inheritDoc} */
50 50
	@Override
51
	protected DetailType getDetailType() {
52
		return DetailType.NATURAL_LANGUAGE;
51
	public String getHeading() {
52
		return "Natural Language Description";
53 53
	}
54 54

  
55 55
	/* (non-Javadoc)
56
	 * @see eu.etaxonomy.taxeditor.section.AbstractCdmDetailSection#getHeading()
56
	 * @see eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection#createCdmDetailElement(eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection, int)
57 57
	 */
58
	/** {@inheritDoc} */
59 58
	@Override
60
	public String getHeading() {
61
		return "Natural Language Description";
59
	protected AbstractCdmDetailElement<TaxonDescription> createCdmDetailElement(AbstractCdmDetailSection<TaxonDescription> parentElement, int style) {
60
	    return formFactory.createNaturalLanguageDetailElement(parentElement);
62 61
	}
63 62
}

Also available in: Unified diff