From 853ee98838b24fc2125c0222940289dba86e255c Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 9 Aug 2011 07:34:52 +0000 Subject: #7369 Vaadin and CDI - can't use SessionScoped beans. Removed obsolete getTag() method svn changeset:20199/svn branch:6.7 --- src/com/vaadin/ui/AbstractComponent.java | 25 ------------------------- 1 file changed, 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. - * - *

- * 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: - *

- * - * @return the component's UIDL tag as String - * @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; } -- cgit v1.2.3