Project

General

Profile

Download (1.01 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
package eu.etaxonomy.taxeditor.bulkeditor.e4.handler;
10

    
11
import javax.inject.Named;
12

    
13
import org.eclipse.e4.core.di.annotations.Execute;
14
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
15
import org.eclipse.e4.ui.services.IServiceConstants;
16

    
17
import eu.etaxonomy.taxeditor.bulkeditor.e4.AnnotatedTableItem;
18
import eu.etaxonomy.taxeditor.bulkeditor.e4.BulkEditorE4;
19

    
20
/**
21
 *
22
 * @author pplitzner
23
 * @date 12.09.2017
24
 *
25
 */
26
public class SetMergeTargetHandlerE4 {
27

    
28
    @Execute
29
    public void execute(@Named(IServiceConstants.ACTIVE_SELECTION)AnnotatedTableItem item,
30
            @Named(IServiceConstants.ACTIVE_PART)MPart activePart) {
31
        BulkEditorE4 editor = (BulkEditorE4) activePart.getObject();
32
        item.setMergeTarget(true);
33
        editor.refresh();
34
	}
35
}
(9-9/9)