summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/tests/featurebrowser/IntroTerminal.java
blob: 8bb4a3f14582b641a530c302e2c8e51b8ff0f502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* 
@ITMillApache2LicenseForJavaFiles@
 */

package com.vaadin.tests.featurebrowser;

import com.vaadin.ui.Component;
import com.vaadin.ui.Label;
import com.vaadin.ui.OrderedLayout;

public class IntroTerminal extends Feature {

    public IntroTerminal() {
        super();
    }

    @Override
    protected Component getDemoComponent() {

        final OrderedLayout l = new OrderedLayout();

        final Label lab = new Label();
        lab.setStyle("featurebrowser-none");
        l.addComponent(lab);

        // Properties
        propertyPanel = null;

        return l;
    }

    @Override
    protected String getExampleSrc() {
        return null;
    }

    /**
     * @see com.vaadin.tests.featurebrowser.Feature#getDescriptionXHTML()
     */
    @Override
    protected String getDescriptionXHTML() {
        return "";
    }

    @Override
    protected String getImage() {
        return null;
    }

    @Override
    protected String getTitle() {
        return "Introduction for terminals (TODO)";
    }

}