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 / EditDataSourceHandler.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>EditDataSourceHandler class.</p>
28 *
29 * @author n.hoffmann
30 * @created 15.04.2009
31 * @version 1.0
32 */
33 public class EditDataSourceHandler extends AbstractDataSourceHandler {
34
35 /* (non-Javadoc)
36 * @see eu.etaxonomy.taxeditor.store.datasource.handler.AbstractDataSourceHandler#specificExecute(org.eclipse.core.commands.ExecutionEvent)
37 */
38 /** {@inheritDoc} */
39 @Override
40 public boolean specificExecute(ExecutionEvent event) {
41 CdmMetaDataAwareDataSourceContainer container = getSelectedDataSourceContainer(event);
42 ICdmSource cdmSource = container.getCdmSource();
43 //FIXME:Remoting we need another wizard for ICdmRemoteSource
44 if(cdmSource instanceof ICdmDataSource) {
45 Wizard wizard = new CdmDataSourceWizard((ICdmDataSource)cdmSource, CdmDataSourceWizard.Mode.EDIT);
46 WizardDialog dialog = new WizardDialog(HandlerUtil.getActiveShell(event), wizard);
47
48 int result = dialog.open();
49
50 if(result == IStatus.OK){
51 CdmDataSourceViewPart view = (CdmDataSourceViewPart) StoreUtil.getView(CdmDataSourceViewPart.ID, false);
52 if(view != null){
53 container.getMetaDataFromDataSource();
54 view.getViewer().update(new CdmMetaDataAwareDataSourceContainer[]{container}, null);
55
56 }
57 }
58 }
59
60 return false;
61 }
62 }