diff options
author | Artur Signell <artur@vaadin.com> | 2012-11-22 12:29:49 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-11-22 12:29:49 +0200 |
commit | c19b1fee143f8dfeb681ba5c58d582c607ee48a6 (patch) | |
tree | 4be155f26ed7cab8ebc5401cf3610e1b023dc86a /server/src/com/vaadin/ui/CssLayout.java | |
parent | 7fb247173e34e445e13fcec76b30246be8799791 (diff) | |
download | vaadin-framework-c19b1fee143f8dfeb681ba5c58d582c607ee48a6.tar.gz vaadin-framework-c19b1fee143f8dfeb681ba5c58d582c607ee48a6.zip |
Added ComponentContainer.addComponents (#10245)
Change-Id: Ie859d194456466424c55ef5e1c2a330f0172e5de
Diffstat (limited to 'server/src/com/vaadin/ui/CssLayout.java')
-rw-r--r-- | server/src/com/vaadin/ui/CssLayout.java | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/server/src/com/vaadin/ui/CssLayout.java b/server/src/com/vaadin/ui/CssLayout.java index aa072df946..228624769f 100644 --- a/server/src/com/vaadin/ui/CssLayout.java +++ b/server/src/com/vaadin/ui/CssLayout.java @@ -126,19 +126,6 @@ public class CssLayout extends AbstractLayout implements LayoutClickNotifier { } /** - * Adds the given components into this container. Each component is added to - * the right or below the previous component. - * - * @param components - * The components to add. - */ - public void addComponents(Component... components) { - for (Component c : components) { - addComponent(c); - } - } - - /** * Adds a component into this container. The component is added to the left * or on top of the other components. * |