Project

General

Profile

Download (888 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 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.workbench.part;
10

    
11
/**
12
 * Classes implementing this interface should be parts that edit elements
13
 * coming from other parts via a selection change
14
 * <br>
15
 * This interface is used as a temporary workaround during e4 migration
16
 * for simulating the IEditorPart behavior of editors VS views
17
 *
18
 * @author pplitzner
19
 * @since Jun 27, 2017
20
 *
21
 */
22
@Deprecated
23
//FIXME E4 migration
24
public interface ISelectionElementEditingPart {
25

    
26
    /**
27
     * Returns the part that has provided the last selection
28
     * @return the selection providing part
29
     */
30
    public Object getSelectionProvidingPart();
31

    
32
}
    (1-1/1)