performed javacscript:fix and worked on documentation
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / forms / selection / PersonSelectionElement.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.forms.selection;
12
13 import org.apache.log4j.Logger;
14 import org.eclipse.swt.events.SelectionEvent;
15
16 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
17 import eu.etaxonomy.cdm.model.agent.Person;
18 import eu.etaxonomy.taxeditor.dialogs.filteredSelection.FilteredPersonSelectionDialog;
19 import eu.etaxonomy.taxeditor.forms.CdmFormFactory;
20 import eu.etaxonomy.taxeditor.forms.ICdmFormElement;
21
22 /**
23 * <p>PersonSelectionElement class.</p>
24 *
25 * @author n.hoffmann
26 * @created May 12, 2010
27 * @version 1.0
28 */
29 public class PersonSelectionElement extends AbstractSelectionElement<Person> {
30
31 private static final Logger logger = Logger
32 .getLogger(PersonSelectionElement.class);
33
34 /**
35 * <p>Constructor for PersonSelectionElement.</p>
36 *
37 * @param formFactory a {@link eu.etaxonomy.taxeditor.forms.CdmFormFactory} object.
38 * @param conversation a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder} object.
39 * @param parentElement a {@link eu.etaxonomy.taxeditor.forms.ICdmFormElement} object.
40 * @param labelString a {@link java.lang.String} object.
41 * @param entity a {@link eu.etaxonomy.cdm.model.agent.Person} object.
42 * @param style a int.
43 */
44 public PersonSelectionElement(CdmFormFactory formFactory, ConversationHolder conversation,
45 ICdmFormElement parentElement, String labelString, Person entity,
46 int style) {
47 super(formFactory, conversation, parentElement, labelString, entity, true, true, false, style);
48 }
49
50 /* (non-Javadoc)
51 * @see org.eclipse.swt.events.SelectionListener#widgetSelected(org.eclipse.swt.events.SelectionEvent)
52 */
53 /** {@inheritDoc} */
54 public void widgetSelected(SelectionEvent e) {
55 Person newSelection = FilteredPersonSelectionDialog.select(getShell(), getConversationHolder(), entity);
56 setSelectionInternal(newSelection);
57 }
58 }