Project

General

Profile

Download (937 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.cdm.vaadin.event;
10

    
11
import eu.etaxonomy.vaadin.mvp.AbstractView;
12

    
13
/**
14
 * @author a.kohlbecker
15
 * @since Dec 7, 2017
16
 *
17
 */
18
public class UpdateResultsEvent {
19

    
20
    private AbstractView sourceView = null;
21

    
22

    
23
    /**
24
     * @param sourceView
25
     */
26
    public UpdateResultsEvent(AbstractView sourceView) {
27
        super();
28
        this.sourceView = sourceView;
29
    }
30

    
31
    /**
32
     * @return the sourceView
33
     */
34
    public AbstractView getSourceView() {
35
        return sourceView;
36
    }
37

    
38
    /**
39
     * @param sourceView the sourceView to set
40
     */
41
    public void setSourceView(AbstractView sourceView) {
42
        this.sourceView = sourceView;
43
    }
44

    
45

    
46

    
47
}
(19-19/19)