Project

General

Profile

Download (1.71 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.navigation.key.polytomous.handler;
11

    
12
import org.eclipse.core.commands.AbstractHandler;
13
import org.eclipse.core.commands.ExecutionEvent;
14
import org.eclipse.core.commands.ExecutionException;
15
import org.eclipse.core.commands.IHandler;
16

    
17
/**
18
 * <p>NewTaxonNodeHandler class.</p>
19
 *
20
 * @author n.hoffmann
21
 * @created Sep 15, 2009
22
 * @version 1.0
23
 */
24
public class NewPolytomousKeyHandler extends AbstractHandler implements IHandler {
25

    
26
    /* (non-Javadoc)
27
     * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
28
     */
29
    /** {@inheritDoc} */
30
    @Override
31
    public Object execute(ExecutionEvent event) throws ExecutionException {
32
//        NewPolytomousKeyWizard wizard = new NewPolytomousKeyWizard();
33
//        wizard.init(null,null);
34
//        WizardDialog dialog = new WizardDialog(HandlerUtil.getActiveShell(event), wizard);
35
//        int status = dialog.open();
36
//        if(status == Status.OK) {
37
//            PolytomousKeyViewPart view = (PolytomousKeyViewPart) NavigationUtil.getView(PolytomousKeyViewPart.ID, false);
38
//            //List<PolytomousKey> pklist = CdmStore.getService(IPolytomousKeyService.class).list(PolytomousKey.class, null, null, null, null);
39
//            view.refresh();
40
//            view.setViewerSelection(new StructuredSelection(wizard.getEntity()),true);
41
//            view.openSelectedKeyNodes();
42
//        }
43
        return null;
44
    }
45
}
(3-3/8)