diff options
author | Artur Signell <artur.signell@itmill.com> | 2009-10-27 07:57:12 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2009-10-27 07:57:12 +0000 |
commit | 6a3c715dae922edd723c9423b4308d5d7948b74e (patch) | |
tree | 46a007274681a9803afccf135ace5554f3e01e3a /src/com/vaadin/demo/HelloWorld.java | |
parent | 931d75fef69deb9b738fad97001cf5621de9f43e (diff) | |
download | vaadin-framework-6a3c715dae922edd723c9423b4308d5d7948b74e.tar.gz vaadin-framework-6a3c715dae922edd723c9423b4308d5d7948b74e.zip |
Split demo and tests files to own source folders, for #3298
svn changeset:9390/svn branch:6.2
Diffstat (limited to 'src/com/vaadin/demo/HelloWorld.java')
-rw-r--r-- | src/com/vaadin/demo/HelloWorld.java | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/com/vaadin/demo/HelloWorld.java b/src/com/vaadin/demo/HelloWorld.java deleted file mode 100644 index 4a1042709d..0000000000 --- a/src/com/vaadin/demo/HelloWorld.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.vaadin.demo; - -import com.vaadin.ui.Label; -import com.vaadin.ui.Window; - -@SuppressWarnings("serial") -public class HelloWorld extends com.vaadin.Application { - - /** - * Init is invoked on application load (when a user accesses the application - * for the first time). - */ - @Override - public void init() { - - // Main window is the primary browser window - final Window main = new Window("Hello window"); - setMainWindow(main); - - // "Hello world" text is added to window as a Label component - main.addComponent(new Label("Hello World!")); - } -} |