Project

General

Profile

Download (2.18 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.selection;
12

    
13
import org.eclipse.swt.events.SelectionEvent;
14

    
15
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
16
import eu.etaxonomy.cdm.model.occurrence.FieldObservation;
17
import eu.etaxonomy.taxeditor.ui.dialog.selection.FieldObservationSelectionDialog;
18
import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
19
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
20

    
21
/**
22
 * <p>
23
 * FieldObservationSelectionElement class.
24
 * </p>
25
 * 
26
 * @author n.hoffmann
27
 * @created Jun 17, 2010
28
 * @version 1.0
29
 */
30
public class FieldObservationSelectionElement extends
31
		AbstractSelectionElement<FieldObservation> {
32

    
33
	public static final int DEFAULT = EDITABLE | SELECTABLE | DELETABLE;
34

    
35
	/**
36
	 * <p>
37
	 * Constructor for FieldObservationSelectionElement.
38
	 * </p>
39
	 * 
40
	 * @param formFactory
41
	 *            a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory}
42
	 *            object.
43
	 * @param conversation
44
	 *            a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder}
45
	 *            object.
46
	 * @param parentElement
47
	 *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
48
	 *            object.
49
	 * @param labelString
50
	 *            a {@link java.lang.String} object.
51
	 * @param entity
52
	 *            a {@link eu.etaxonomy.cdm.model.occurrence.FieldObservation}
53
	 *            object.
54
	 * @param style
55
	 *            a int.
56
	 */
57
	public FieldObservationSelectionElement(CdmFormFactory formFactory,
58
			ConversationHolder conversation, ICdmFormElement parentElement,
59
			String labelString, FieldObservation entity, int mode, int style) {
60
		super(formFactory, conversation, parentElement, labelString, entity,
61
				mode, style);
62
	}
63

    
64
	/** {@inheritDoc} */
65
	@Override
66
	public void widgetSelected(SelectionEvent e) {
67
		FieldObservation newSelection = FieldObservationSelectionDialog.select(
68
				getShell(), getConversationHolder(), entity);
69
		setSelectionInternal(newSelection);
70
	}
71
}
(9-9/24)