Project

General

Profile

Download (6.33 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2009 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
package eu.etaxonomy.taxeditor.ui.dialog.selection;
11

    
12
import org.eclipse.swt.widgets.Shell;
13

    
14
import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
15
import eu.etaxonomy.cdm.api.facade.DerivedUnitFacade;
16
import eu.etaxonomy.cdm.model.agent.AgentBase;
17
import eu.etaxonomy.cdm.model.agent.Institution;
18
import eu.etaxonomy.cdm.model.agent.Person;
19
import eu.etaxonomy.cdm.model.agent.Team;
20
import eu.etaxonomy.cdm.model.agent.TeamOrPersonBase;
21
import eu.etaxonomy.cdm.model.common.GrantedAuthorityImpl;
22
import eu.etaxonomy.cdm.model.common.Group;
23
import eu.etaxonomy.cdm.model.common.ICdmBase;
24
import eu.etaxonomy.cdm.model.common.User;
25
import eu.etaxonomy.cdm.model.description.Feature;
26
import eu.etaxonomy.cdm.model.description.FeatureTree;
27
import eu.etaxonomy.cdm.model.description.PolytomousKey;
28
import eu.etaxonomy.cdm.model.description.PolytomousKeyNode;
29
import eu.etaxonomy.cdm.model.location.Country;
30
import eu.etaxonomy.cdm.model.location.NamedArea;
31
import eu.etaxonomy.cdm.model.molecular.Amplification;
32
import eu.etaxonomy.cdm.model.molecular.Primer;
33
import eu.etaxonomy.cdm.model.name.TaxonNameBase;
34
import eu.etaxonomy.cdm.model.occurrence.Collection;
35
import eu.etaxonomy.cdm.model.occurrence.DerivedUnit;
36
import eu.etaxonomy.cdm.model.occurrence.FieldUnit;
37
import eu.etaxonomy.cdm.model.reference.Reference;
38
import eu.etaxonomy.cdm.model.taxon.Classification;
39
import eu.etaxonomy.cdm.model.taxon.Synonym;
40
import eu.etaxonomy.cdm.model.taxon.Taxon;
41
import eu.etaxonomy.cdm.model.taxon.TaxonBase;
42
import eu.etaxonomy.cdm.model.taxon.TaxonNode;
43
import eu.etaxonomy.taxeditor.model.MessagingUtils;
44
import eu.etaxonomy.taxeditor.ui.element.ICdmFormElement;
45
import eu.etaxonomy.taxeditor.ui.element.IEntityElement;
46

    
47
/**
48
 * @author n.hoffmann
49
 * @date Jan 25, 2012
50
 *
51
 */
52
public class SelectionDialogFactory {
53

    
54
    public static <T extends ICdmBase> T getSelectionFromDialog(Class<T> clazz, Shell shell, ConversationHolder conversation, T currentSelection){
55
        return getSelectionFromDialog(clazz, shell, conversation, currentSelection, null);
56
    }
57

    
58
	public static <T extends ICdmBase> T getSelectionFromDialog(Class<T> clazz, Shell shell, ConversationHolder conversation, T currentSelection, ICdmFormElement parentElement){
59

    
60
		if(clazz.equals(Taxon.class)){
61
			return (T) TaxonBaseSelectionDialog.selectTaxon(shell, conversation, (Taxon) currentSelection);
62
		}
63
		if(clazz.equals(Synonym.class)){
64
			return (T) TaxonBaseSelectionDialog.selectSynonym(shell, conversation);
65
		}
66
		if(clazz.equals(TaxonBase.class)){
67
			return (T) TaxonBaseSelectionDialog.selectTaxonBase(shell, conversation);
68
		}
69
		if(clazz.equals(Classification.class)){
70
			return (T) ClassificationSelectionDialog.select(shell, conversation, (Classification) currentSelection);
71
		}
72
		if(clazz.equals(TaxonNode.class)){
73
			return (T) TaxonNodeSelectionDialog.select(shell, conversation, null, null, (TaxonNode) currentSelection, ((TaxonNode) currentSelection).getClassification());
74
		}
75
		if(clazz.equals(Reference.class)){
76
			return (T) ReferenceSelectionDialog.select(shell, conversation, (Reference) currentSelection);
77
		}
78
		if(clazz.equals(TaxonNameBase.class)){
79
			return (T) NameSelectionDialog.select(shell, conversation, (TaxonNameBase) currentSelection);
80
		}
81
		if(clazz.equals(Team.class)){
82
			return (T) TeamSelectionDialog.select(shell, conversation, (Team) currentSelection);
83
		}
84
		if(clazz.equals(TeamOrPersonBase.class)){
85
		    //TODO: add TeamOrPersonBaseSelectionDialog (see ticket #4545)
86
		    return (T) AgentSelectionDialog.select(shell, conversation, (AgentBase) currentSelection);
87
		}
88
		if(clazz.equals(AgentBase.class)){
89
			return (T) AgentSelectionDialog.select(shell, conversation, (AgentBase) currentSelection);
90
		}
91
		if(clazz.equals(Feature.class)){
92
			return (T) FeatureSelectionDialog.select(shell, conversation, (Feature) currentSelection);
93
		}
94
		if(clazz.equals(FeatureTree.class)){
95
			return (T) FeatureTreeSelectionDialog.select(shell, conversation, (FeatureTree) currentSelection);
96
		}
97
		if(clazz.equals(PolytomousKey.class)){
98
			return (T) PolytomousKeySelectionDialog.select(shell, conversation, (PolytomousKey) currentSelection);
99
		}
100
		if(clazz.equals(PolytomousKeyNode.class)){
101
			MessagingUtils.warningDialog("Not implemented yet", SelectionDialogFactory.class,
102
					"This functionality is not implemented yet.");
103
			return null;
104
		}
105
		if(clazz.equals(DerivedUnit.class)){
106
			return (T) DerivedUnitSelectionDialog.select(shell, conversation, (DerivedUnit) currentSelection);
107
		}
108
		if(clazz.equals(FieldUnit.class)){
109
			return (T) FieldUnitSelectionDialog.select(shell, conversation, (FieldUnit) currentSelection);
110
		}
111
		if(clazz.equals(NamedArea.class)){
112
		    if(parentElement instanceof IEntityElement && ((IEntityElement) parentElement).getEntity() instanceof DerivedUnitFacade){
113
		        return (T) NamedAreaSelectionDialog.select(shell, conversation, (NamedArea) currentSelection, Country.uuidCountryVocabulary);
114
		    }
115
		    else{
116
		        return (T) NamedAreaSelectionDialog.select(shell, conversation, (NamedArea) currentSelection);
117
		    }
118
		}
119
		if(clazz.equals(Collection.class)){
120
			return (T) CollectionSelectionDialog.select(shell, conversation, (Collection) currentSelection);
121
		}
122
		if(clazz.equals(User.class)){
123
			return (T) UserSelectionDialog.select(shell, conversation, (User) currentSelection);
124
		}
125
		if(clazz.equals(GrantedAuthorityImpl.class)){
126
			return (T) GrantedAuthoritySelectionDialog.select(shell, conversation, (GrantedAuthorityImpl) currentSelection);
127
		}
128
		if (clazz.equals(Person.class)){
129
			return (T) PersonSelectionDialog.select(shell, conversation, (Person) currentSelection);
130
		}
131
		if(clazz.equals(Group.class)){
132
			return (T) GroupSelectionDialog.select(shell, conversation, (Group) currentSelection);
133
		}
134
		if(clazz.equals(Institution.class)){
135
			return (T) InstitutionSelectionDialog.select(shell, conversation, (Institution) currentSelection);
136
		}
137
		if(clazz.equals(Primer.class)){
138
		    return (T) PrimerSelectionDialog.select(shell, conversation, (Primer) currentSelection);
139
		}
140
		if(clazz.equals(Amplification.class)){
141
		    return (T) AmplificationSelectionDialog.select(shell, conversation, (Amplification) currentSelection);
142
		}
143

    
144
		return null;
145
	}
146

    
147
}
(23-23/29)