Project

General

Profile

Download (887 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.view.registration;
10

    
11
import java.util.Collection;
12
import java.util.List;
13

    
14
import eu.etaxonomy.cdm.vaadin.presenter.registration.ListPresenter;
15
import eu.etaxonomy.cdm.vaadin.presenter.registration.RegistrationDTO;
16
import eu.etaxonomy.vaadin.mvp.ApplicationView;
17

    
18
/**
19
 * @author a.kohlbecker
20
 * @since Mar 3, 2017
21
 *
22
 */
23
public interface ListView extends ApplicationView<ListPresenter>{
24

    
25
    /**
26
     * @param page
27
     */
28
    void populate(Collection<RegistrationDTO> registrations);
29

    
30
    /**
31
     * @param messages
32
     */
33
    void openDetailsPopup(String caption, List<String> messages);
34

    
35

    
36
}
(2-2/9)