diff options
author | Leif Åstrand <leif@vaadin.com> | 2011-11-28 13:42:02 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2011-11-28 13:42:02 +0200 |
commit | 6063d00f5ae6f0cb5c5eaf0c3ce2998c5aa88a2b (patch) | |
tree | 218c6fb4f62f20325d25aeed94b38338b7708f33 /src/com/vaadin/annotations | |
parent | cb5f080e5337c081f22eea86c0cf170ef88a2257 (diff) | |
download | vaadin-framework-6063d00f5ae6f0cb5c5eaf0c3ce2998c5aa88a2b.tar.gz vaadin-framework-6063d00f5ae6f0cb5c5eaf0c3ce2998c5aa88a2b.zip |
Add support for deferred Root init and early widgetset loading
Diffstat (limited to 'src/com/vaadin/annotations')
-rw-r--r-- | src/com/vaadin/annotations/RootInitRequiresBrowserDetals.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/com/vaadin/annotations/RootInitRequiresBrowserDetals.java b/src/com/vaadin/annotations/RootInitRequiresBrowserDetals.java new file mode 100644 index 0000000000..62383eee92 --- /dev/null +++ b/src/com/vaadin/annotations/RootInitRequiresBrowserDetals.java @@ -0,0 +1,12 @@ +package com.vaadin.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Target(ElementType.TYPE) +@Retention(RetentionPolicy.RUNTIME) +public @interface RootInitRequiresBrowserDetals { + // No methods +} |