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