Project

General

Profile

Download (980 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.phycobank;
10

    
11
import com.vaadin.navigator.View;
12
import com.vaadin.navigator.ViewChangeListener.ViewChangeEvent;
13
import com.vaadin.spring.annotation.SpringView;
14
import com.vaadin.ui.Label;
15
import com.vaadin.ui.VerticalLayout;
16

    
17
/**
18
 * @author a.kohlbecker
19
 * @since Mar 2, 2017
20
 *
21
 */
22
@SpringView(name=ListView.NAME)
23
public class ListView extends VerticalLayout implements View {
24

    
25
    private static final long serialVersionUID = 3543300933072824713L;
26

    
27
    public static final String NAME = "list";
28

    
29
    public ListView() {
30
        addComponent(new Label("List View"));
31
    }
32

    
33
    /**
34
     * {@inheritDoc}
35
     */
36
    @Override
37
    public void enter(ViewChangeEvent event) {
38

    
39
    }
40

    
41
}
(2-2/6)