aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/demo/tutorial/addressbook/ui/HelpWindow.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/demo/tutorial/addressbook/ui/HelpWindow.java')
-rw-r--r--src/com/vaadin/demo/tutorial/addressbook/ui/HelpWindow.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/com/vaadin/demo/tutorial/addressbook/ui/HelpWindow.java b/src/com/vaadin/demo/tutorial/addressbook/ui/HelpWindow.java
deleted file mode 100644
index d9e08d7679..0000000000
--- a/src/com/vaadin/demo/tutorial/addressbook/ui/HelpWindow.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package com.vaadin.demo.tutorial.addressbook.ui;
-
-import com.vaadin.ui.Label;
-import com.vaadin.ui.Window;
-
-@SuppressWarnings("serial")
-public class HelpWindow extends Window {
- private static final String HELP_HTML_SNIPPET = "This is "
- + "an application built during <strong><a href=\""
- + "http://dev.vaadin.com/\">Vaadin</a></strong> "
- + "tutorial. Hopefully it don't need any real help.";
-
- public HelpWindow() {
- setCaption("Address Book help");
- addComponent(new Label(HELP_HTML_SNIPPET, Label.CONTENT_XHTML));
- }
-
-}