refactoring of package names for consistency
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / selection / TeamSelectionElement.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.agent.Team;
17 import eu.etaxonomy.taxeditor.ui.dialog.selection.TeamSelectionDialog;
18 import eu.etaxonomy.taxeditor.ui.element.CdmFormFactory;
19 import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
20
21 /**
22 * <p>
23 * TeamSelectionElement class.
24 * </p>
25 *
26 * @author n.hoffmann
27 * @created Apr 30, 2010
28 * @version 1.0
29 */
30 public class TeamSelectionElement extends AbstractSelectionElement<Team> {
31
32 public static final int DEFAULT = EDITABLE | SELECTABLE | DELETABLE;
33
34 /**
35 * <p>
36 * Constructor for TeamSelectionElement.
37 * </p>
38 *
39 * @param toolkit
40 * a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory}
41 * object.
42 * @param conversation
43 * a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder}
44 * object.
45 * @param parentElement
46 * a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
47 * object.
48 * @param labelString
49 * a {@link java.lang.String} object.
50 * @param selection
51 * a {@link eu.etaxonomy.cdm.model.agent.Team} object.
52 * @param style
53 * a int.
54 */
55 public TeamSelectionElement(CdmFormFactory toolkit,
56 ConversationHolder conversation, ICdmFormElement parentElement,
57 String labelString, Team selection, int mode, int style) {
58 super(toolkit, conversation, parentElement, labelString, selection,
59 mode, style);
60 }
61
62 /** {@inheritDoc} */
63 @Override
64 public void widgetSelected(SelectionEvent e) {
65 Team newSelection = TeamSelectionDialog.select(getShell(),
66 getConversationHolder(), entity);
67 setSelectionInternal(newSelection);
68 }
69
70 }