dbbb2540eeef35175113d221f1703bb9715d2426
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / selection / PolytomousKeyNodeSelectionElement.java
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.description.PolytomousKeyNode;
17 import eu.etaxonomy.taxeditor.ui.forms.CdmFormFactory;
18 import eu.etaxonomy.taxeditor.ui.forms.ICdmFormElement;
19
20 /**
21 * @author n.hoffmann
22 * @created Dec 3, 2010
23 * @version 1.0
24 */
25 public class PolytomousKeyNodeSelectionElement extends
26 AbstractSelectionElement<PolytomousKeyNode> {
27
28 public static final int DEFAULT = DELETABLE;
29
30 /**
31 *
32 * @param formFactory
33 * @param conversation
34 * @param parentElement
35 * @param labelString
36 * @param entity
37 * @param style
38 */
39 public PolytomousKeyNodeSelectionElement(CdmFormFactory formFactory,
40 ConversationHolder conversation, ICdmFormElement parentElement,
41 String labelString, PolytomousKeyNode entity, int mode, int style) {
42 super(formFactory, conversation, parentElement, labelString, entity,
43 mode, style);
44 }
45
46 /*
47 * (non-Javadoc)
48 *
49 * @see
50 * org.eclipse.swt.events.SelectionListener#widgetSelected(org.eclipse.swt
51 * .events.SelectionEvent)
52 */
53 @Override
54 public void widgetSelected(SelectionEvent e) {
55
56 }
57
58 }