diff options
author | Artur Signell <artur.signell@itmill.com> | 2011-08-09 07:34:52 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2011-08-09 07:34:52 +0000 |
commit | 853ee98838b24fc2125c0222940289dba86e255c (patch) | |
tree | e8b0f4d2e53f00833bdd88707ec2c29d5af43656 | |
parent | 5793ebf976d41656f16dc3f792cf4380ff570c93 (diff) | |
download | vaadin-framework-853ee98838b24fc2125c0222940289dba86e255c.tar.gz vaadin-framework-853ee98838b24fc2125c0222940289dba86e255c.zip |
#7369 Vaadin and CDI - can't use SessionScoped beans.
Removed obsolete getTag() method
svn changeset:20199/svn branch:6.7
-rw-r--r-- | src/com/vaadin/ui/AbstractComponent.java | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/com/vaadin/ui/AbstractComponent.java b/src/com/vaadin/ui/AbstractComponent.java index 784ecb262b..1f18504148 100644 --- a/src/com/vaadin/ui/AbstractComponent.java +++ b/src/com/vaadin/ui/AbstractComponent.java @@ -156,31 +156,6 @@ public abstract class AbstractComponent implements Component, MethodEventSource /* Get/Set component properties */ - /** - * Gets the UIDL tag corresponding to the component. - * - * <p> - * Note! In version 6.2 the method for mapping server side components to - * their client side counterparts was enhanced. This method was made final - * to intentionally "break" code where it is needed. If your code does not - * compile due overriding this method, it is very likely that you need to: - * <ul> - * <li>remove the implementation of getTag - * <li>add {@link ClientWidget} annotation to your component - * </ul> - * - * @return the component's UIDL tag as <code>String</code> - * @deprecated tags are no more required for components. Instead of tags we - * are now using {@link ClientWidget} annotations to map server - * side components to client side counterparts. Generating - * identifier for component type is delegated to terminal. - * @see ClientWidget - */ - @Deprecated - public final String getTag() { - return ""; - } - public void setDebugId(String id) { testingId = id; } |