Project

General

Profile

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

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

    
15
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
16
import eu.etaxonomy.cdm.model.description.PolytomousKey;
17
import eu.etaxonomy.taxeditor.forms.CdmFormFactory;
18
import eu.etaxonomy.taxeditor.forms.ICdmFormElement;
19

    
20
/**
21
 * @author n.hoffmann
22
 * @created Dec 3, 2010
23
 * @version 1.0
24
 */
25
public class PolytomousKeySelectionElement extends AbstractSelectionElement<PolytomousKey> {
26

    
27
	/**
28
	 * @param formFactory
29
	 * @param conversation
30
	 * @param parentElement
31
	 * @param labelString
32
	 * @param entity
33
	 * @param isEditable
34
	 * @param isSelectable
35
	 * @param isDeletable
36
	 * @param style
37
	 */
38
	public PolytomousKeySelectionElement(CdmFormFactory formFactory,
39
			ConversationHolder conversation, ICdmFormElement parentElement,
40
			String labelString, PolytomousKey entity, int style) {
41
		super(formFactory, conversation, parentElement, labelString, entity,
42
				true, false, true, style);
43
	}
44

    
45
	/* (non-Javadoc)
46
	 * @see org.eclipse.swt.events.SelectionListener#widgetSelected(org.eclipse.swt.events.SelectionEvent)
47
	 */
48
	@Override
49
	public void widgetSelected(SelectionEvent e) {
50
		// TODO Auto-generated method stub
51
		
52
	}
53

    
54
}
(16-16/20)