Project

General

Profile

Download (2.37 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.taxeditor.ui.dialog.selection;
11

    
12
import java.util.UUID;
13

    
14
import org.eclipse.swt.widgets.Control;
15
import org.eclipse.swt.widgets.Shell;
16
import org.eclipse.swt.widgets.Text;
17

    
18
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
19
import eu.etaxonomy.cdm.api.service.INameService;
20
import eu.etaxonomy.cdm.model.name.TaxonNameBase;
21
import eu.etaxonomy.taxeditor.newWizard.AbstractNewEntityWizard;
22
import eu.etaxonomy.taxeditor.newWizard.NewNonViralNameWizard;
23
import eu.etaxonomy.taxeditor.store.CdmStore;
24

    
25
/**
26
 * @author n.hoffmann
27
 * @created 04.06.2009
28
 * @version 1.0
29
 */
30
public class NameSelectionDialog extends AbstractFilteredCdmResourceSelectionDialog<TaxonNameBase> {
31

    
32
	public static TaxonNameBase select(Shell shell, ConversationHolder conversation, TaxonNameBase name) {
33
		NameSelectionDialog dialog = new NameSelectionDialog(shell, conversation,
34
				"Choose a name", false, name);
35
		return getSelectionFromDialog(dialog);
36
	}
37

    
38
	protected NameSelectionDialog(Shell shell, ConversationHolder conversation, String title, boolean multi, TaxonNameBase name) {
39
		super(shell, conversation, title, multi, NameSelectionDialog.class.getCanonicalName(), name);
40
	}
41

    
42
	/** {@inheritDoc} */
43
	@Override
44
	protected TaxonNameBase getPersistentObject(UUID cdmUuid) {
45
		return CdmStore.getService(INameService.class).load(cdmUuid);
46
	}
47

    
48
	/** {@inheritDoc} */
49
	@Override
50
	protected void initModel() {
51
	    Control control = getPatternControl();
52
        String pattern = null;
53
        if (control != null){
54
            pattern = ((Text)control).getText();
55
        }
56

    
57
        if (pattern == null || pattern.equals("?")){
58
            model = CdmStore.getService(INameService.class).getUuidAndTitleCache(null, null);
59
        }else{
60
            model = CdmStore.getService(INameService.class).getUuidAndTitleCache(limitOfInitialElements, pattern);
61
        }
62
	}
63

    
64
	/** {@inheritDoc} */
65
	@Override
66
	protected AbstractNewEntityWizard getNewEntityWizard(String parameter) {
67
		return new NewNonViralNameWizard();
68
	}
69

    
70
	/** {@inheritDoc} */
71
	@Override
72
	protected String getNewWizardLinkText() {
73
		return String.format("Create a new <a>%1s</a>", "Name ");
74
	}
75
}
(16-16/34)