diff options
author | Henri Sara <hesara@vaadin.com> | 2011-12-01 12:42:01 +0200 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2011-12-01 12:42:01 +0200 |
commit | 7e41d180f12ad9641957442e9cb961768cb039b2 (patch) | |
tree | 684788a57eb5a2a50262dc72dfc36a94cf35a777 /src/com/vaadin/ui | |
parent | 32432d5e6efae65300819c2ae30d3ffedc193e6a (diff) | |
download | vaadin-framework-7e41d180f12ad9641957442e9cb961768cb039b2.tar.gz vaadin-framework-7e41d180f12ad9641957442e9cb961768cb039b2.zip |
#8026 remove some deprecated API from CustomComponent
Diffstat (limited to 'src/com/vaadin/ui')
-rw-r--r-- | src/com/vaadin/ui/CustomComponent.java | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/com/vaadin/ui/CustomComponent.java b/src/com/vaadin/ui/CustomComponent.java index 847338fa60..c638e01fa5 100644 --- a/src/com/vaadin/ui/CustomComponent.java +++ b/src/com/vaadin/ui/CustomComponent.java @@ -36,11 +36,6 @@ public class CustomComponent extends AbstractComponentContainer { private Component root = null; /** - * Type of the component. - */ - private String componentType = null; - - /** * Constructs a new custom component. * * <p> @@ -115,43 +110,9 @@ public class CustomComponent extends AbstractComponentContainer { + " can be painted"); } - if (getComponentType() != null) { - target.addAttribute("type", getComponentType()); - } root.paint(target); } - /** - * Gets the component type. - * - * The component type is textual type of the component. This is included in - * the UIDL as component tag attribute. - * - * @deprecated not more useful as the whole tag system has been removed - * - * @return the component type. - */ - @Deprecated - public String getComponentType() { - return componentType; - } - - /** - * Sets the component type. - * - * The component type is textual type of the component. This is included in - * the UIDL as component tag attribute. - * - * @deprecated not more useful as the whole tag system has been removed - * - * @param componentType - * the componentType to set. - */ - @Deprecated - public void setComponentType(String componentType) { - this.componentType = componentType; - } - private class ComponentIterator implements Iterator<Component>, Serializable { boolean first = getCompositionRoot() != null; |