Browse Source

Added some page titles to the examples.

master 1.1
D45Hub 4 years ago
parent
commit
c3153d09bf
  1. 2
      src/main/java/dev/dhbw/testproject/vaadintest/GridAppUI.java
  2. 3
      src/main/java/dev/dhbw/testproject/vaadintest/RestUI.java

2
src/main/java/dev/dhbw/testproject/vaadintest/GridAppUI.java

@ -30,7 +30,7 @@ import com.vaadin.ui.VerticalLayout;
/**
* More complete example of an application. In here we have a grid with some
* example persons in there and a form "component" which inserts new persons to
* the grid.
* the grid. The title annotation sets the name of the title of the page.
*/
@Theme("mytheme")
@Title("Grid Application Example")

3
src/main/java/dev/dhbw/testproject/vaadintest/RestUI.java

@ -27,7 +27,8 @@ import com.vaadin.ui.VerticalLayout;
/**
* Another more complete example of an application. This one fetches data from a
* REST API (https://meowfacts.herokuapp.com) and displays it in a pretty way
* with a button to get data from the API and then show it to the user.
* with a button to get data from the API and then show it to the user. The
* title annotation sets the name of the title of the page.
*/
@Theme("mytheme")
@Title("REST Example")

Loading…
Cancel
Save