aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/test/java/com/vaadin/tests/design/designroot/ExtendedDesignWithEmptyAnnotationUI.java
blob: 88134f2af7b8bb8899a2fc9cb789108da738f319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.vaadin.tests.design.designroot;

import com.vaadin.server.VaadinRequest;
import com.vaadin.ui.UI;

public class ExtendedDesignWithEmptyAnnotationUI extends UI {

    @Override
    protected void init(VaadinRequest request) {
        setContent(new ExtendedDesignWithEmptyAnnotation());

    }

}