Merge branch 'develop' into LibrAlign
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / view / datasource / handler / CloneDataSourceHandler.java
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.view.datasource.handler;
11
12 import org.eclipse.core.commands.ExecutionEvent;
13 import org.eclipse.core.runtime.IStatus;
14 import org.eclipse.jface.wizard.Wizard;
15 import org.eclipse.jface.wizard.WizardDialog;
16 import org.eclipse.ui.handlers.HandlerUtil;
17
18 import eu.etaxonomy.cdm.config.ICdmSource;
19 import eu.etaxonomy.cdm.database.ICdmDataSource;
20 import eu.etaxonomy.taxeditor.datasource.wizard.CdmDataSourceWizard;
21 import eu.etaxonomy.taxeditor.store.StoreUtil;
22 import eu.etaxonomy.taxeditor.view.datasource.CdmDataSourceViewPart;
23 import eu.etaxonomy.taxeditor.view.datasource.CdmMetaDataAwareDataSourceContainer;
24
25 /**
26 * <p>CloneDataSourceHandler class.</p>
27 *
28 */
29 public class CloneDataSourceHandler extends AbstractDataSourceHandler {
30
31 /* (non-Javadoc)
32 * @see eu.etaxonomy.taxeditor.store.datasource.handler.AbstractDataSourceHandler#specificExecute(org.eclipse.core.commands.ExecutionEvent)
33 */
34 /** {@inheritDoc} */
35 @Override
36 public boolean specificExecute(ExecutionEvent event) {
37 CdmMetaDataAwareDataSourceContainer container = getSelectedDataSourceContainer(event);
38 ICdmSource cdmSource = container.getCdmSource();
39 //FIXME:Remoting we need another wizard for ICdmRemoteSource
40 if(cdmSource instanceof ICdmDataSource) {
41 Wizard wizard = new CdmDataSourceWizard((ICdmDataSource)cdmSource, CdmDataSourceWizard.Mode.CLONE);
42 WizardDialog dialog = new WizardDialog(HandlerUtil.getActiveShell(event), wizard);
43
44 int result = dialog.open();
45
46 if(result == IStatus.OK){
47 CdmDataSourceViewPart view = (CdmDataSourceViewPart) StoreUtil.getView(CdmDataSourceViewPart.ID, false);
48 if(view != null){
49 container.getMetaDataFromDataSource();
50 view.getViewer().update(new CdmMetaDataAwareDataSourceContainer[]{container}, null);
51
52 }
53 }
54 }
55
56 return true;
57 }
58 }