Project

General

Profile

Download (1.71 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2015 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
package eu.etaxonomy.taxeditor.navigation.key.polytomous.handler;
11

    
12
import org.eclipse.core.commands.ExecutionEvent;
13
import org.eclipse.core.commands.operations.AbstractOperation;
14
import org.eclipse.core.runtime.IStatus;
15

    
16
import eu.etaxonomy.taxeditor.navigation.key.polytomous.PolytomousKeyViewLabels;
17
import eu.etaxonomy.taxeditor.operation.RemotingCdmHandler;
18

    
19
/**
20
 * @author cmathew
21
 * @date 29 Jun 2015
22
 *
23
 */
24
public class RemotingUpdatePolytomousKeyAllNodesHandler extends RemotingCdmHandler {
25

    
26
    /**
27
     * @param label
28
     */
29
    public RemotingUpdatePolytomousKeyAllNodesHandler() {
30
        super(PolytomousKeyViewLabels.UPDATE_ALL_POLYTOMOUS_KEY_NODES_LABEL);
31
    }
32

    
33
    /* (non-Javadoc)
34
     * @see eu.etaxonomy.taxeditor.operation.RemotingCdmHandler#allowOperations(org.eclipse.core.commands.ExecutionEvent)
35
     */
36
    @Override
37
    public IStatus allowOperations(ExecutionEvent event) {
38
        // TODO Auto-generated method stub
39
        return null;
40
    }
41

    
42
    /* (non-Javadoc)
43
     * @see eu.etaxonomy.taxeditor.operation.RemotingCdmHandler#prepareOperation(org.eclipse.core.commands.ExecutionEvent)
44
     */
45
    @Override
46
    public AbstractOperation prepareOperation(ExecutionEvent event) {
47
        // TODO Auto-generated method stub
48
        return null;
49
    }
50

    
51
    /* (non-Javadoc)
52
     * @see eu.etaxonomy.taxeditor.operation.RemotingCdmHandler#onComplete()
53
     */
54
    @Override
55
    public void onComplete() {
56
        // TODO Auto-generated method stub
57

    
58
    }
59

    
60
}
(7-7/7)