Project

General

Profile

Download (2.15 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2011 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.ui.section.userecords;
10

    
11
import org.eclipse.jface.viewers.ISelectionProvider;
12

    
13
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
14
import eu.etaxonomy.cdm.model.description.DescriptionElementBase;
15
import eu.etaxonomy.taxeditor.store.CdmStore;
16
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
17
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
18
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailElement;
19
import eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection;
20

    
21
/**
22
 * UseRecordDetailSection Class
23
 * @author a.theys
24
 * @created mar 13, 2012
25
 * @version 1.0
26
 */
27
public class UseRecordDetailSection extends AbstractCdmDetailSection<DescriptionElementBase> {
28

    
29
	/**Constructor for class UseRecordDetailSection
30
	 *
31
	 * @param cdmFormFactory
32
	 * @param conversation
33
	 * @param parentElement
34
	 * @param selectionProvider
35
	 * @param style
36
	 */
37
	public UseRecordDetailSection(CdmFormFactory cdmFormFactory, ConversationHolder conversation,
38
			ICdmFormElement parentElement, ISelectionProvider selectionProvider, int style) {
39
		super(cdmFormFactory, conversation, parentElement, selectionProvider, style);
40
	}
41

    
42
	/** {@inheritDoc} */
43
	@Override
44
	public String getHeading() {
45
		return "Use Record";
46
	}
47

    
48
	/** {@inheritDoc} */
49
	@Override
50
	protected void setSectionTitle() {
51
		this.setText(getHeading() + ": " + getEntity().getFeature().getLabel(CdmStore.getDefaultLanguage()));
52
		setTextClient(createToolbar());
53
	}
54

    
55
	/* (non-Javadoc)
56
	 * @see eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection#createCdmDetailElement(eu.etaxonomy.taxeditor.ui.section.AbstractCdmDetailSection, int)
57
	 */
58
	@Override
59
	protected AbstractCdmDetailElement createCdmDetailElement(AbstractCdmDetailSection<DescriptionElementBase> parentElement, int style) {
60
	    return formFactory.createUseRecordDetailElement(parentElement);
61
	}
62

    
63
}
(2-2/2)