aboutsummaryrefslogtreecommitdiffstats
path: root/ui/safe-blur.js
Commit message (Collapse)AuthorAgeFilesLines
* All: Drop support for IE & some other browsers (but mostly IE)Michał Gołębiowski-Owczarek2024-05-151-25/+0
| | | | Closes gh-2249
* Build: Migrate from JSHint & JSCS to ESLintMichał Gołębiowski-Owczarek2021-06-071-2/+6
| | | | | Fixes #15393 Closes gh-1958
* Core: Move safe blur into its own moduleAlexander Schmitz2015-08-081-0/+21
Ref #9647
ue='grep'>log msg
path: root/test/spring-boot-subcontext/src/main/java/com/example/ui/RootPathUI.java
blob: 1ed2725c42ad32ed2e6d494aa513307aa672ef7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.example.ui;

import com.vaadin.server.VaadinRequest;
import com.vaadin.spring.annotation.SpringUI;
import com.vaadin.ui.Label;

@SpringUI
public class RootPathUI extends AbstractSpringUI {

    @Override
    protected void init(VaadinRequest request) {
        super.init(request);

        Label label = new Label("RootPathUI");
        label.setId("rootpath");
        navigationBar.addComponent(label);
    }
}