aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/annotations/LoadScripts.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-06-27 16:52:09 +0300
committerLeif Åstrand <leif@vaadin.com>2012-06-27 16:52:29 +0300
commitb55ff51e8c254c56bb415432102b878fa053d8f3 (patch)
treeca0d38de4624b0c39bc4149298b866e1a3f8665b /src/com/vaadin/annotations/LoadScripts.java
parentb52ef3b876615be464d40bd3b24f379c8bf511bb (diff)
downloadvaadin-framework-b55ff51e8c254c56bb415432102b878fa053d8f3.tar.gz
vaadin-framework-b55ff51e8c254c56bb415432102b878fa053d8f3.zip
Add @JavaScript and @StyleSheet and remove @LoadScripts (#9044)
Diffstat (limited to 'src/com/vaadin/annotations/LoadScripts.java')
-rw-r--r--src/com/vaadin/annotations/LoadScripts.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/com/vaadin/annotations/LoadScripts.java b/src/com/vaadin/annotations/LoadScripts.java
deleted file mode 100644
index 84ac2d2fb7..0000000000
--- a/src/com/vaadin/annotations/LoadScripts.java
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
-@VaadinApache2LicenseForJavaFiles@
- */
-package com.vaadin.annotations;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-
-/**
- * Temporary hack used for ensuring external javascript libraries are included.
- * To add a javascript, add this annotation to your Root class.
- *
- * @deprecated Will be removed in favor of a more robust solution before version
- * 7.0.0
- */
-@Retention(RetentionPolicy.RUNTIME)
-@Target(ElementType.TYPE)
-@Deprecated
-public @interface LoadScripts {
- public String[] value();
-
-}