You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HelloWorld.java 364B

1234567891011121314151617
  1. package com.vaadin.tests.application;
  2. import com.vaadin.server.VaadinRequest;
  3. import com.vaadin.ui.UI;
  4. /**
  5. * A simple application to simplify doing quick testing of features when a full
  6. * test case is not needed
  7. */
  8. public class HelloWorld extends UI {
  9. @Override
  10. protected void init(VaadinRequest request) {
  11. // Type your code here...
  12. }
  13. }