aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/RootTestApplication.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/RootTestApplication.java')
-rw-r--r--src/com/vaadin/RootTestApplication.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/com/vaadin/RootTestApplication.java b/src/com/vaadin/RootTestApplication.java
new file mode 100644
index 0000000000..c64712ccd6
--- /dev/null
+++ b/src/com/vaadin/RootTestApplication.java
@@ -0,0 +1,22 @@
+package com.vaadin;
+
+import com.vaadin.ui.DefaultRoot;
+import com.vaadin.ui.Label;
+import com.vaadin.ui.Root;
+
+public class RootTestApplication extends Application {
+ private final Root root = new DefaultRoot(this, new Label(
+ "Roots, bloody roots"));
+
+ @Override
+ public void init() {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public Root getRoot() {
+ return root;
+ }
+
+}