Project

General

Profile

Download (1.99 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.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.view.datasource.CdmMetaDataAwareDataSourceContainer;
22

    
23
/**
24
 * <p>EditDataSourceHandler class.</p>
25
 *
26
 * @author n.hoffmann
27
 * @created 15.04.2009
28
 * @version 1.0
29
 */
30
public class EditDataSourceHandler 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.EDIT);
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 false;
58
	}
59
}
(7-7/8)