Project

General

Profile

Download (910 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
 *@see IE4SavablePart
19
 * @author pplitzner
20
 * @since Jun 27, 2017
21
 *
22
 */
23
@Deprecated
24
//FIXME E4 migration
25
public interface ISelectionElementEditingPart {
26

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

    
33
}
(4-4/4)